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

{{buildreports.title}}: Build Report

{% if request.user.is_authenticated %}

Welcome, {{ request.user.get_username }}. Thanks for logging in. (Logout)

{% else %}

Please log in.

{% endif %}
Commit
{% for builder in buildreports.builders.all %}
{{builder.address|getbuilderstate|safe}}
{% endfor %}
{% for commit in commits %}
{{commit.commit}}
{{commit.commit.bug}}
{% for builder in buildreports.builders.all %}
{% for run in runs %}{% if run.builder = builder 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}}
STE: {{run.suite_file|address_tail}} 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 %} {% if donotrefresh %} {%else%} {% endif %} {% endblock %}