{% extends 'ui/base.html' %} {% block title %}System Settings | BioQueue{% endblock %} {% block content %}

Leave it blank to turn off notification.

Leave it blank to turn off notification.

{% if mail_protocol == 'ssl' %} {% elif mail_protocol == 'tls' %} {% else %} {% endif %}

Leave it blank to turn off notification.

Leave it blank to turn off notification.

Maximum amount of physical memory used by the job. e.g. 32GB, 64MB

Maximum amount of virtual memory used by the job. e.g. 32GB, 64MB

Defines the destination of the job. The destination names a queue (high, low, FAT), a server, or a queue at a server.

If not set for a generally available resource, the limit for CPU time is infinite.

Latest version: Fetching...

Current version: {{ cv }}

If the jobs have indeed finished, but BioQueue still shows the jobs are running, you can click this button to reset the status of the jobs.

Clean Dead Lock
{% csrf_token %}
{% endblock %} {% block script %} if ($('#cluster-type').children('option:selected').val()!=''){ $('.cluster-control').removeAttr("disabled"); } $('#cluster-type').change(function(){ if($(this).children('option:selected').val()==''){ $('.cluster-control').attr("disabled","disabled"); }else{ $('.cluster-control').removeAttr("disabled"); } }); $('.tooltipopen').tooltip(); $('.sliderbar').slider({ formatter: function(value) { return 'Current value: ' + value; } }); $.get("{{ rv }}", function(data){ if (data == $("#local-version").text()){ $("#update-trigger").attr("disabled", "disabled"); }else{ $('#update-trigger').removeAttr("disabled"); } $("#github-version").html(data); }); function update(obj){ var self = $(obj); self.attr("disabled", true); $.get("{% url 'ui:update_bioqueue' %}", function(data){ if(data.status){ Messenger().post({ message: data.info, showCloseButton: true }); }else{ Messenger().post({ message: data.info, type: 'error', showCloseButton: true }); self.attr("disabled", false); } }).error(function(){ self.attr("disabled", false); }); } {% endblock %}