{% 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 %}
{% else %}
{% 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 %}
{{ stat.status }} |
{{ stat.count }}
|
{% endfor %}
|
{% with head=object.git_head %}{% if head %}
Last Commit |
Commit Time |
{% if head.committed_date %}
{{ head.committed_date|timestamp }}{% endif %}
|
Author |
{{ head.author }}
|
Message |
{{ head.message|linebreaksbr }}
|
|
|
|
{% endif %}{% endwith %}
{% if object.testrun_set.exists %}
{% for run in object.testrun_set.failures %}
{% ifchanged run.module %}
{{ run.module }} |
{% endifchanged %}
{{ run.status }} |
{{ run.name }}{% if run.description %}
{{ run.description }}{% endif %}
|
{% if run.error %}
{{ run.error|linebreaksbr }}
|
{% endif %}
{% endfor %}
{% else %}
No tests have been run
{% endif %}
{% endblock %}