{% extends "wheeljack/base.html" %} {% block "content" %}

Project {{ object.name }}

{% if buildlog.success %} {% else %} {% endif %} {% with buildlog.start as start %} {% endwith %}
Project info
Repository {{ object.repository }}
Build command {{ object.build_cmd }}
Watch list {% for email in object.watch_list.split %} {{ email }}{% if not forloop.last %},{% endif %} {% endfor %}
Build info
Revision {{ buildlog.revision }}
Build stateOKFAILED
Last build {{ buildlog.end|date:"r" }}
Build time{{ buildlog.end|timesince:start }}
Build output {{ buildlog.output }}
{% for build in object.buildlog_set.all %} {% if build.success %} {% else %} {% endif %} {% endfor %}
All builds
RevisionBuild stateFinished atBuild time
{{ build.revision }} OKFAILED {{ build.end|date:"r" }} {{ build.end|timesince:build.start }}
{% endblock %}