{% extends "base.html" %} {% load filters %} {% block title %}{{project_name}}: {{record.label}}{% endblock %} {% block header %}

{{project_name}}: {{record.label}}

{% endblock %} {% block content %} {% with record.get_previous_by_timestamp as previous %}{% with record.get_next_by_timestamp as next %}

{% if previous %}previous record {% endif %} {% if next %}next record {% endif %} Return to record list

{% endwith %}{% endwith %} {{form.errors}}
Label:{{record.label}}
Reason:{{form.reason}}
Outcome:{{form.outcome}}
Timestamp:{{record.timestamp|date:"d/m/Y H:i:s"}}
Duration:{{record.duration|floatformat:"2"}} s
Executable:{{record.executable.name}} version {{record.executable.version}} ({{record.executable.path}})
Launch mode:{% ifequal record.launch_mode.type "SerialLaunchMode" %}serial{% else %}distributed, n={{record.launch_mode.get_parameters.n}}{% endifequal %}
Repository:{{record.repository.url}}
Main file:{{record.main_file}}
Version:{{record.version}}{% if record.diff %}* (diff){% endif %}
Arguments:{{record.script_arguments}}
Tags:{{form.tags}}
{% if record.input_data %}

Input files

{{record.input_data}} {% endif %}

Output files

{% for file in datafiles %} {% endfor %}
{{record.datastore.access_parameters.root}}
{{file}} {{file.mimetype|default:""}} {{file.size|filesizeformat}}

Parameters

{% for name, value in parameters.items %} {{name}} = {{value}}
{% endfor %}

Dependencies

{% for dep in record.dependencies.all %} {% endfor %}
NamePathVersion
{{dep.name}}{{dep.path}}{{dep.version}}{% if dep.diff %}* (diff){% endif %}

Platform information

{% for platform in record.platforms.all %} {% endfor %}
NameIP addressProcessor ArchitectureSystem type ReleaseVersion
{{platform.network_name}} {{platform.ip_addr}} {{platform.processor}} {{platform.machine}} {{platform.architecture_bits}} {{platform.architecture_linkage}} {{platform.system_name}} {{platform.release}} {{platform.version}}
{% endblock %}