{% extends 'core/base.html' %} {% load static %} {% load i18n %} {% block content %}
{% trans "Job ID" %} | {{ job.job_id }} |
---|---|
{% trans "Job Name" %} | {{ job.name }} |
{% trans "Job Description" %} | {{ job.description }} |
{% trans "Executable Type" %} | {{ job.base_executable.get_type_display }} |
{% trans "Executable Name" %} | {{ job.base_executable.cwl.label }} |
{% trans "Total Execution Count" %} | {{ execution_count }} |
{% trans "Currently running Configurations" %} | {% for log in running_executions %}{{ log.config }} {% endfor %} |
{% trans "Users of this Job" %} | {% for user in collaborators %}{{ user.1 }} {% endfor %} |
{% trans "Last Execution" %} | {{ last_execution.start_time }} |
{% trans "Last Duration" %} | {{ last_execution.duration_str }} |
{% trans "Last Profiling Info" %} | {% for item in last_execution.profiling.items %} {{ item.0 }}: {{ item.1 }}s {% endfor %} |
{% trans "Last Memory usage" %} | {% for item in last_execution.memory_usage_dict.items %} {{ item.0 }}: {{ item.1 }} {% endfor %} |
{% trans "Last Execution ID" %} | {{ last_execution.execution_id }} |
{% trans "Last Execution was Aborted" %} | {% trans "True" %} |