blob: 4ce5c4a8a5513935a1dc16a7d34cb18cb8d61364 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{% extends "basebuildpage.html" %}
{% load projecttags %}
{% block title %} {{title}} - {{build.target_set.all|dictsort:"target"|join:", "}} {{build.machine}} - {{build.project.name}} - Toaster {% endblock %}
{% block localbreadcrumb %}
<li>{{title}}</li>
{% endblock %}
{% block nav-packages %}
{% endblock %}
{% block buildinfomain %}
<div class="span10">
{% url 'builtpackagestable' build.id as xhr_table_url %}
<div class="page-header">
<h1>
{{title}} (<span class="table-count-{{table_name}}">0</span>) </h2>
</h1>
</div>
{% include "toastertable.html" %}
</div>
{% endblock %}
|