mirror of
https://git.yoctoproject.org/poky
synced 2026-02-14 04:33:03 +01:00
Since the Toaster GUI was cloned from the Simple UI, we need to update the URL pattern names in Simple UI to prevent conflict when determining the reverse URL path. (Bitbake rev: 6ed1a28eb0e52a6de83a37664ff6f4418ce84ee4) Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
18 lines
725 B
HTML
18 lines
725 B
HTML
{% extends "simple_basetable.html" %}
|
|
|
|
{% block pagename %}
|
|
<ul class="nav nav-tabs" style="display: inline-block">
|
|
<li><a>Build {{build.target_set.all|join:" "}} at {{build.started_on}} : </a></li>
|
|
<li><a href="{% url "simple-task" build.id %}"> Tasks </a></li>
|
|
<li><a href="{% url "simple-bpackage" build.id %}"> Build Packages </a></li>
|
|
{% for t in build.target_set.all %}
|
|
{% if t.is_image %}
|
|
<li><a href="{% url "simple-tpackage" build.id t.pk %}"> Packages for {{t.target}} </a> </li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
<li><a href="{% url "simple-configuration" build.id %}"> Configuration </a> </li>
|
|
</ul>
|
|
<h1>Toaster - Build {% block pagetitle %} {% endblock %}</h1>
|
|
{% endblock %}
|
|
|