{% extends "base/detail.html" %} {% load url from future %} {% load ci_tags %} {% block extrastyles %} {% endblock extrastyles %} {% block extrascripts %} {% endblock extrascripts %} {% block links %} View Project Update Delete {% endblock %} {% block detail %}
{% with server=object.get_server %} {% if not server %}
{% csrf_token %}
{% else %}
View server on port {{ server.port }} {% csrf_token %}
{% endif %} {% endwith %}
{% csrf_token %}
{% with head=object.git_head %}{% if head %} {% endif %}{% endwith %}
Last Test Run {% with status=object.testing_status %} {% if status %} {{ object.last_run.created_at }} [{{ status }} - {{ object.celery_id }}] {% endif %} {% endwith %}
Summary {% for stat in object.stats %} {% endfor %}
{{ stat.status }} {{ stat.count }}
Last Commit
Commit Time {% if head.committed_date %} {{ head.committed_date|timestamp }}{% endif %}
Author {{ head.author }}
Message
{{ head.message|linebreaksbr }}
{% if object.testrun_set.exists %} {% for run in object.testrun_set.failures %} {% ifchanged run.module %} {% endifchanged %} {% if run.error %} {% endif %} {% endfor %}
{{ run.module }}
{{ run.status }} {{ run.name }}{% if run.description %}
{{ run.description }}{% endif %}
{{ run.error|linebreaksbr }}
{% else %} No tests have been run {% endif %} {% endblock %}