{% extends 'core/base.html' %} {% load static %} {% load i18n %} {% block content %}
{% with job.userjobconfig_set.first as config %}{% if config %} {% if job.status == job.StatusCodes.RUNNING %} {% else %} {% endif %} {% else %} {% endif %}{% endwith %} {% trans 'Open CWL' %}

{{ job.name }} {% trans "Run" %}


{% autoescape off %} {{ output_text }} {% endautoescape %}

{{ job.name }} {% trans "Job Details" %}

{% if job.description %} {% endif %} {% if running_executions %} {% endif %} {% if last_execution.start_time %} {% endif %} {% if last_execution.duration_str %} {% endif %} {% if last_execution.profiling %} {% endif %} {% if last_execution.memory_usage_dict %} {% endif %} {% if last_execution.execution_id %} {% endif %} {% if last_execution.aborted %} {% endif %}
{% 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" %}
{% endblock %} {% block script %} {% endblock %}