{% extends "base_template.html" %} {% load views_extras %} {% block title %}{{buildreports.title}}: Suite Report{% endblock %} {% block styles %} {% endblock %} {% block headscripts %} {% endblock %} {% block content %}

Builder information:

{% for builder in buildreports.builders.all %}
{{builder.address|getbuilderstate|safe}}
{% endfor %}

Suite Report:

Commit
{% for suite in suitelist.all %}
{{suite.suite_file|suite_link}}
{% endfor %}
{% for commit in commits %}
{% for suite in suitelist.all %}
{% for run in runs %}{% if run.suite_file = suite.suite_file and run.commit.revision = commit.commit%}
{{run.end_time|date:"d M"}} Len: {{run.end_time|subtractdate:run.start_time|format_time}} Bld:{{run.build_number}}
Builder: {% if run.builder.address == run.builder.address|address_tail%}{{run.builder.address}}{% else %}{{run.builder.address|address_tail}}{% endif %} PF:{{run.run_results|translate_PF}}
OS: {% if run.operating_system == "NA" %}Logged upon completion.{% else %}{{run.operating_system}}{% endif %} {% if run.history.all.count > 1 %} {% endif %}
{{run.caused_bug|jira_pull_br|safe}}
{% if run.comment != "" %} Comment: {% endif %}{{run.comment|linebreaks}} {% if run.comment != "" %} ~{{ run.username }} {% endif %}
{% endif %}{% endfor%}
{% endfor %}
{% endfor %}
{% if loadtime %}

Initial Data Load took {{loadtime}} Seconds, remaining loadtime can be attributed primarily to JIRA pulls. {% endif %} {% endblock %} {% block footscripts %} {% endblock %}