<%inherit file="/base.mako"/> <%namespace file="/message.mako" import="render_msg" /> <%def name="title()">Jobs

Jobs

%if message: ${render_msg( message, status )} %endif

All unfinished jobs are displayed here. To display only jobs that have not had their job state updated recently, set a cutoff value in the 'cutoff' box below.

If any jobs are displayed, you may choose to stop them. Your stop message will be displayed to the user as: "This job was stopped by an administrator: <YOUR MESSAGE> For more information or help, report this error".

%if jobs: %for job in jobs: %if job.history.user: %else: %endif %endfor
  Job ID User Last Update Tool State Command Line Job Runner PID/Cluster ID
%if job.state == 'upload':   %else: %endif ${job.id}${job.history.user.email}anonymous${last_updated[job.id]} ago ${job.tool_id} ${job.state} ${job.command_line} ${job.job_runner_name} ${job.job_runner_external_id}

Stop Jobs
to be displayed to the user

%else:

There are no unfinished jobs to show with current cutoff time.

%endif

Update Jobs
In seconds

Administrative Job Lock
%if job_lock==True:

All job execution is currently locked. Click here to unlock.

%else:

To prevent new jobs from dispatching, you can lock the job queue here.

%endif