summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/bldviewer/templates/basebuildpage.html
blob: 873f271babd81c00fd530cfcccb51f165f6c5d1e (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 %}