mirror of
https://git.yoctoproject.org/poky
synced 2026-03-09 16:59:40 +01:00
Port all the pages in the build analysis area to bootstrap version 3. (Bitbake rev: f963b73f0bf32db2df39dd79d8d85184c280cda0) Signed-off-by: Belen Barros Pena <belen.barros.pena@linux.intel.com> Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
34 lines
1.5 KiB
HTML
34 lines
1.5 KiB
HTML
|
|
<ul class="nav nav-tabs">
|
|
{% if active_tab == "detail" %}
|
|
<li class="active">
|
|
{% else %}
|
|
<li class="">
|
|
{% endif %}
|
|
<a href="{% url 'package_included_detail' build.id target.id package.id %}">
|
|
<span class="glyphicon glyphicon-question-sign get-help" title="The files this package adds to the image root file system"></span>
|
|
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 %}">
|
|
<span class="glyphicon glyphicon-question-sign get-help" title="Package runtime dependencies"></span>
|
|
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 %}">
|
|
<span class="glyphicon glyphicon-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"></span>
|
|
Reverse runtime dependencies ({{reverse_count}})
|
|
</a>
|
|
</li>
|
|
</ul>
|