Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | {% extends "base.html" %} |
| 2 | |
| 3 | {% load static %} |
| 4 | {% load projecttags %} |
| 5 | {% load humanize %} |
| 6 | |
| 7 | {% block extraheadcontent %} |
| 8 | <link rel="stylesheet" href="/static/css/jquery-ui.min.css" type='text/css'> |
| 9 | <link rel="stylesheet" href="/static/css/jquery-ui.structure.min.css" type='text/css'> |
| 10 | <link rel="stylesheet" href="/static/css/jquery-ui.theme.min.css" type='text/css'> |
| 11 | <script src="/static/js/jquery-ui.min.js"></script> |
| 12 | <script src="/static/js/filtersnippet.js"></script> |
| 13 | {% endblock %} |
| 14 | |
| 15 | {% block pagecontent %} |
| 16 | |
| 17 | {% if last_date_from and last_date_to %} |
| 18 | <script> |
| 19 | // initialize the date range controls |
| 20 | $(document).ready(function () { |
| 21 | date_init('started_on','{{last_date_from}}','{{last_date_to}}','{{dateMin_started_on}}','{{dateMax_started_on}}','{{daterange_selected}}'); |
| 22 | date_init('completed_on','{{last_date_from}}','{{last_date_to}}','{{dateMin_completed_on}}','{{dateMax_completed_on}}','{{daterange_selected}}'); |
| 23 | }); |
| 24 | </script> |
| 25 | {%endif%} {# last_date_from and last_date_to #} |
| 26 | |
| 27 | <div class="row-fluid"> |
| 28 | |
| 29 | {% include "mrb_section.html" %} |
| 30 | |
| 31 | |
| 32 | {% if 1 %} |
| 33 | <div class="page-header top-air"> |
| 34 | <h1> |
| 35 | {% if request.GET.filter and objects.paginator.count > 0 or request.GET.search and objects.paginator.count > 0 %} |
| 36 | {{objects.paginator.count}} build{{objects.paginator.count|pluralize}} found |
| 37 | {%elif request.GET.filter and objects.paginator.count == 0 or request.GET.search and objects.paginator.count == 0 %} |
| 38 | No builds found |
| 39 | {%else%} |
| 40 | All builds |
| 41 | {%endif%} |
| 42 | </h1> |
| 43 | </div> |
| 44 | |
| 45 | {% if objects.paginator.count == 0 %} |
| 46 | <div class="row-fluid"> |
| 47 | <div class="alert"> |
| 48 | <form class="no-results input-append" id="searchform"> |
| 49 | <input id="search" name="search" class="input-xxlarge" type="text" value=" |
| 50 | {% if request.GET.search %} |
| 51 | {{request.GET.search}} |
| 52 | {% endif %}"/> |
| 53 | {% if request.GET.search %}<a href="javascript:$('#search').val('');searchform.submit()" class="add-on btn" tabindex="-1"><i class="icon-remove"></i></a>{% endif %} |
| 54 | <button class="btn" type="submit" value="Search">Search</button> |
| 55 | <button class="btn btn-link" onclick="javascript:$('#search').val('');searchform.submit()">Show all builds</button> |
| 56 | </form> |
| 57 | </div> |
| 58 | </div> |
| 59 | |
| 60 | |
| 61 | {% else %} |
| 62 | {% include "basetable_top.html" %} |
| 63 | <!-- Table data rows; the order needs to match the order of "tablecols" definitions; and the <td class value needs to match the tablecols clclass value for show/hide buttons to work --> |
| 64 | {% for build in objects %} |
| 65 | <tr class="data"> |
| 66 | <td class="outcome"> |
| 67 | <a href="{% url "builddashboard" build.id %}">{%if build.outcome == build.SUCCEEDED%}<i class="icon-ok-sign success"></i>{%elif build.outcome == build.FAILED%}<i class="icon-minus-sign error"></i>{%else%}{%endif%}</a> |
| 68 | </td> |
| 69 | <td class="target">{% for t in build.target_set.all %} <a href="{% url "builddashboard" build.id %}"> {{t.target}} </a> <br />{% endfor %}</td> |
| 70 | <td class="machine"><a href="{% url "builddashboard" build.id %}">{{build.machine}}</a></td> |
| 71 | <td class="started_on"><a href="{% url "builddashboard" build.id %}">{{build.started_on|date:"d/m/y H:i"}}</a></td> |
| 72 | <td class="completed_on"><a href="{% url "builddashboard" build.id %}">{{build.completed_on|date:"d/m/y H:i"}}</a></td> |
| 73 | <td class="failed_tasks error"> |
| 74 | {% query build.task_build outcome=4 order__gt=0 as exectask%} |
| 75 | {% if exectask.count == 1 %} |
| 76 | <a href="{% url "task" build.id exectask.0.id %}">{{exectask.0.recipe.name}}.{{exectask.0.task_name}}</a> |
| 77 | <a href="{% url 'build_artifact' build.id "tasklogfile" exectask.0.id %}"> |
| 78 | <i class="icon-download-alt" title="" data-original-title="Download task log file"></i> |
| 79 | </a> |
| 80 | {% elif exectask.count > 1%} |
| 81 | <a href="{% url "tasks" build.id %}?filter=outcome%3A4">{{exectask.count}} task{{exectask.count|pluralize}}</a> |
| 82 | {%endif%} |
| 83 | </td> |
| 84 | <td class="errors.count errors_no"> |
| 85 | {% if build.errors.count %} |
| 86 | <a class="errors.count error" href="{% url "builddashboard" build.id %}#errors">{{build.errors.count}} error{{build.errors.count|pluralize}}</a> |
| 87 | {%endif%} |
| 88 | </td> |
| 89 | <td class="warnings.count warnings_no">{% if build.warnings.count %}<a class="warnings.count warning" href="{% url "builddashboard" build.id %}#warnings">{{build.warnings.count}} warning{{build.warnings.count|pluralize}}</a>{%endif%}</td> |
| 90 | <td class="time"><a href="{% url "buildtime" build.id %}">{{build.timespent_seconds|sectohms}}</a></td> |
| 91 | <td class="output"> |
| 92 | {% if build.outcome == build.SUCCEEDED %} |
| 93 | <a href="{%url "builddashboard" build.id%}#images">{{fstypes|get_dict_value:build.id}}</a> |
| 94 | {% endif %} |
| 95 | </td> |
| 96 | <td> |
| 97 | <a href="{% url 'project' build.project.id %}">{{build.project.name}}</a> |
| 98 | </td> |
| 99 | </tr> |
| 100 | |
| 101 | {% endfor %} |
| 102 | |
| 103 | |
| 104 | {% include "basetable_bottom.html" %} |
| 105 | {% endif %} {# objects.paginator.count #} |
| 106 | {% endif %} {# empty #} |
| 107 | </div><!-- end row-fluid--> |
| 108 | |
| 109 | {% endblock %} |