{% extends "base.html" %}
{% load filters %}
{% block title %}{{data.project_id}}: {{data.label}}{% endblock %}
{% block in_projects %} class="active"{% endblock %}
{% block header %}
{{data.project_id}}
{% endblock %}
{% block content %}
{% with record=data %}
| Label | {{data.label}} |
{% if record.tags %}
| Tags |
{% for tag in record.tags %}{{tag}} {% endfor %} |
{% endif %}
{% if record.reason %}
| Motivation |
{{record.reason}} |
{% endif %}
{% if record.outcome %}
| Outcome | {{record.outcome}} |
{% endif %}
|---|
| Date | {{record.timestamp|date:"d/m/Y"}} |
| Time | {{record.timestamp|time:"H:i:s"}} |
| Duration | {{record.duration|floatformat:"2"}} s |
| Launch mode | {% if record.launch_mode.get_type == "SerialLaunchMode" %}serial{% else %}distributed, n={{record.launch_mode.get_parameters.n}}{% endif %} |
Code
| Executable |
Repository |
Version |
Main file |
Arguments |
| {{record.executable.name}} {{record.executable.version}} ({{record.executable.path}}) |
{{record.repository.url|urlize}} |
{{record.version}}{% if record.diff %}* (diff){% endif %} |
{{record.main_file}} |
{{record.script_arguments}} |
Dependencies
| Name | Path | Version |
{% for dep in record.dependencies %}
| {{dep.name}} | {{dep.path}} | {{dep.version}}{% if dep.diff %}* (diff){% endif %} |
{% endfor %}
Inputs
{% if record.input_data %}
Input files
| {{record.input_datastore.parameters.root}} |
{% for file in record.input_data %}
| {{file.path}} |
{{file.digest}} |
{{file.metadata.mimetype|default:""}} |
{{file.metadata.size|filesizeformat}} |
{% endfor %}
{% endif %}
{% if record.parameters %}
Parameters
{{record.parameters.content|linebreaksbr}}
{% endif %}
Outputs
{% if record.output_data %}
Output files
| {{record.datastore.root}} |
{% for file in record.output_data %}
{% if record.datastore.get_type == "MirroredFileSystemDataStore" %}
| {{file.path}} |
{% else %}
{{file.path}} |
{% endif %}
{{file.digest}} |
{{file.metadata.mimetype|default:""}} |
{{file.metadata.size|filesizeformat}} |
{% endfor %}
{% endif %}
{% if record.stdout_stderr %}
Stdout & Stderr
{{ record.stdout_stderr }}
{% endif %}
Environment
| Name | IP address | Processor |
Architecture | System type |
Release | Version |
{% for platform in record.platforms %}
| {{platform.network_name}} |
{{platform.ip_addr}} |
{{platform.processor}} {{platform.machine}} |
{{platform.architecture_bits}} |
{{platform.architecture_linkage}} |
{{platform.system_name}} |
{{platform.release}} |
{{platform.version}} |
{% endfor %}
{% endwith %}
{% endblock %}
{% block scripts %}
{% endblock %}