{% extends "base.html" %}
{% block "content" %}
Project {{ object.name }}
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 %}
|
Force build |
|
Build info |
Revision |
{{ buildlog.revision }} |
Build state |
{% if buildlog.success %}
OK |
{% else %}
FAILED |
{% endif %}
Last build |
{{ buildlog.end|date:"r" }} |
Build time |
{% with buildlog.start as start %}
{{ buildlog.end|timesince:start }} |
{% endwith %}
Build output |
{{ buildlog.output }}
|
All builds
Revision | Build state | Finished at | Build time |
{% for build in object.buildlog_set.all %}
{{ build.revision }}
|
{% if build.success %}
OK |
{% else %}
FAILED |
{% endif %}
{{ build.end|date:"r" }}
|
{{ build.end|timesince:build.start }} |
{% endfor %}
{% endblock %}