summaryrefslogtreecommitdiffstats
path: root/lib/toaster/bldviewer/templates/basebuildpage.html
blob: d590f28bc51aa7506b64e66d5a1d05d24f88fd1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "basetable.html" %}

{% block pagename %}
<ul class="nav nav-tabs" style="display: inline-block">
  <li><a>Build {{build.target_set.all|join:"&nbsp;"}} at {{build.started_on}} : </a></li>
  <li><a href="{% url "task" build.id %}"> Tasks </a></li>
  <li><a href="{% url "bpackage" build.id %}"> Build Packages </a></li>
    {% for t in build.target_set.all %}
        {% if t.is_image %}
  <li><a href="{% url "tpackage" build.id t.pk %}"> Packages for {{t.target}} </a> </li>
        {% endif %}
    {% endfor %}
  <li><a href="{% url "configuration" build.id %}"> Configuration </a> </li>
</ul>
     <h1>Toaster - Build {% block pagetitle %} {% endblock %}</h1>
{% endblock %}