{% extends "base.html" %} {% load filters %} {% block title %}{{project.id}}: List of records{% endblock %} {% block css %} {% endblock %} {% block navbar %}
  • {{project.id}}
  • {% endblock %} {% block navbar-right %} {% if not read_only %}
  • {% endif %} {% endblock %} {% block content %} {% if project.name %}

    {{project.name}}

    {% endif %}
    Data View Image View Parameter View About
    {% if not read_only %} {% endif %}
    {% for column in project.columns %} {% endfor %} {% for record in records %} {% endfor %}
    {{column|nbsp}}
    {{record.label|ubreak}} {{record.timestamp|date:"YmdHis"}} {{record.timestamp|date:"d/m/Y H:i:s"}} {{record.reason|restructuredtext}} {{record.outcome|restructuredtext}} {% for data in record.input_data.all %} {{data.path|basename|ubreak}}{% if not forloop.last %}, {% endif %} {% endfor %} {% for data in record.output_data.all %} {{data.path|basename|ubreak}}{% if not forloop.last %}, {% endif %} {% endfor %} {{record.duration|human_readable_duration}} {{record.launch_mode.get_parameters.n|default:"1"}} {{record.executable.name}} {{record.executable.version}} {{record.main_file|ubreak}} {{record.version|cut:"vers"|truncatechars:10}}{% if record.diff %}*{% endif %} {{record.script_arguments}} {% for tag in record.tag_objects %}{{tag.name|labelize_tag}}{% if not forloop.last %} {% endif %}{% endfor %}
    {% endblock %} {% block dialogs %} {% endblock %} {% block scripts %} {% endblock %}