mirror of
https://git.yoctoproject.org/poky
synced 2026-02-10 10:43:02 +01:00
In the recipe details and package details pages, the layer branch definition list elements should only show when the branch field in the database is populated. If the branch field is empty, we don't show them. The patch also removes all unnecessary data-toggle and data-original-title attributes. [YP #6152] (Bitbake rev: 72adcadb931519f803dad7488544767241561fb7) Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
34 lines
1.4 KiB
HTML
34 lines
1.4 KiB
HTML
|
|
<ul class="nav nav-pills">
|
|
{% if active_tab == "detail" %}
|
|
<li class="active">
|
|
{% else %}
|
|
<li class="">
|
|
{% endif %}
|
|
<a href="{% url 'package_included_detail' build.id target.id package.id %}">
|
|
<i class="icon-question-sign get-help" title="The files this package adds to the image root file system"></i>
|
|
Files in root file system ({{packageFileCount}})
|
|
</a>
|
|
</li>
|
|
{% if active_tab == "dependencies" %}
|
|
<li class="active">
|
|
{% else %}
|
|
<li class="">
|
|
{% endif %}
|
|
<a href="{% url 'package_included_dependencies' build.id target.id package.id %}">
|
|
<i class="icon-question-sign get-help" title="Package runtime dependencies"></i>
|
|
Runtime dependencies ({{dependency_count}})
|
|
</a>
|
|
</li>
|
|
{% if active_tab == "reverse" %}
|
|
<li class="active">
|
|
{% else %}
|
|
<li class="">
|
|
{% endif %}
|
|
<a href="{% url 'package_included_reverse_dependencies' build.id target.id package.id %}">
|
|
<i class="icon-question-sign get-help" title="The package runtime reverse dependencies (i.e. the packages in this image that depend on this package). Reverse dependencies reflect only the 'depends' dependency type"></i>
|
|
Reverse runtime dependencies ({{reverse_count}})
|
|
</a>
|
|
</li>
|
|
</ul>
|