{% extends 'layout.html' %} {% load static %} {% load format_names %} {% load url_generate %} {% load url_replace %} {% block title %}Builds - {{ port.name }} |{% endblock %} {% block head_scripts %} {% endblock %} {% block content %}
{% include 'port/includes/port-header.html' with port=port %} {% include 'port/includes/port-tabs.html' with port_name=port.name active="builds" %}
{{ form.status }}
{{ form.builder_name__name }}
Reset
{% if builds|length > 0 %}
{% include 'includes/basic_pagination.html' with items=builds contents="build(s)" %} {% for build in builds %} {% endfor %}
Builder Build Number Start Time Elapsed Time Watcher Build Status
{{ build.builder_name.display_name }} {{ build.build_id }} {{ build.time_start|date:"Y-m-d" }} {{ build.time_start|time:"G:i:s" }} {{ build.time_elapsed }} {{ build.watcher_id }} {{ build.status }}
{% else %}
No build history is available for that selection right now.

This does not mean that there is anything wrong with builds. It is just that the app does not have any records in its database. It may be caused by a failure to fetch the history in time.

{% endif %}
{% endblock %}