%inherit file="/base.mako"/> <%namespace file="/message.mako" import="render_msg" /> <%def name="javascripts()"> ${parent.javascripts()} %def> <%def name="title()">Jobs%def>
Unfinished and recently finished jobs are displayed on this page. The 'cutoff' input box will do two things -- it will limit the display of unfinished jobs to only those jobs that have not had their job state updated recently, and it will limit the recently finished jobs list to only displaying jobs that have finished since the cutoff.
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: %else: %endif %if recent_jobs:Job ID | User | Finished | Tool | State | Inputs | Command Line | Job Runner | PID/Cluster ID | ${job.id} | %if job.history and job.history.user:${job.history.user.email|h} | %else:anonymous | %endif${finished[job.id]} ago | ${job.tool_id|h} | ${job.state} | <% try: inputs = ", ".join( [ '%s %s' % ( da.dataset.id, da.dataset.state ) for da in job.input_datasets ] ) except: inputs = 'Unable to determine inputs' %>${inputs} | ${job.command_line|h} | ${job.job_runner_name|h} | ${job.job_runner_external_id|h} | %endfor