{% extends "base.html" %} {% load filters %} {% block title %}{{project_name}}: {{record.label}}{% endblock %} {% block css %} {% endblock %} {% block navbar %}
  • {{project_name}}
  • {{record.label}}
  • {% endblock %} {% block content %}
    {% if not read_only %}
    {% endif %}

    {{record.label}}

    $ {{record.command_line}}

    Run on {{record.timestamp|date:"d/m/Y H:i:s"}} by {{record.user}}

    Working directory:
    {{record.working_directory}}
    Code version:
    {{record.version}}{% if record.diff %}* (diff){% endif %}
    Repository:
    {{record.repository.url}} {% if record.repository.upstream %} - cloned from {{record.repository.upstream|urlize}}{% endif %}
    {{record.executable.name}} version:
    {{record.executable.version}}
    Reason:
    {% if not read_only %} {% endif %} {{record.reason|restructuredtext}}
    Tags:
    {% if not read_only %} {% endif %} {% for tag in record.tag_objects %}{{tag.name|labelize_tag}} {% endfor %}
    {% if not read_only and not record.outcome %}

    {% endif %}
    {% if record.outcome %}
    {% if not read_only %} {% endif %}

    Outcome

    {{record.outcome|restructuredtext}}
    {% endif %} {% if parameters %}

    Parameters

    {% with dict=parameters template="nested_dict.html" %} {% include template %} {% endwith %}
    {% endif %} {% if record.input_data.count %}

    Input data

    {% for data in record.input_data.all %} {% endfor %}
    Filename Path Digest Size Date/Time Output of Input to
    {{data.path|basename|ubreak}} {{data.path|ubreak}} {{data.digest|truncatechars:12 }} {{data|eval_metadata:'size'|filesizeformat}} {{data.output_from_record.timestamp|date:"YmdHis"}} {{data.output_from_record.timestamp|date:"d/m/Y H:i:s"}} {{data.output_from_record.label|ubreak}} {% for record in data.input_to_records.all %} {{record.label|ubreak}}{% if not forloop.last %}, {% endif %} {% endfor %}
    {% endif %} {% if record.output_data.count %}

    Output data

    {% for data in record.output_data.all %} {% endfor %}
    Filename Path Digest Size Date/Time Output of Input to
    {{data.path|basename|ubreak}} {{data.path|ubreak}} {{data.digest|truncatechars:12 }} {{data|eval_metadata:'size'|filesizeformat}} {{data.output_from_record.timestamp|date:"YmdHis"}} {{data.output_from_record.timestamp|date:"d/m/Y H:i:s"}} {{data.output_from_record.label|ubreak}} {% for record in data.input_to_records.all %} {{record.label|ubreak}}{% if not forloop.last %}, {% endif %} {% endfor %}
    {% endif %} {% if record.dependencies.count %}

    Dependencies

    {% for dep in record.dependencies.all %} {% endfor %}
    Name Path Version
    {{dep.name}} {{dep.path}} {{dep.version}}{% if dep.diff %}* (diff){% endif %}
    {% endif %} {% if record.platforms.count %}

    Platform information

    {% for platform in record.platforms.all %} {% endfor %}
    Name IP address Processor Architecture System type Release Version
    {{platform.network_name}} {{platform.ip_addr}} {{platform.processor}} {{platform.machine}} {{platform.architecture_bits}} {{platform.architecture_linkage}} {{platform.system_name}} {{platform.release}} {{platform.version}}
    {% endif %} {% if record.stdout_stderr %}

    Stdout & Stderr

    {{ record.stdout_stderr | linebreaksbr }}
    {% endif %} {% endblock content %} {% block dialogs %} {% endblock %} {% block scripts %} {% endblock %}