summaryrefslogtreecommitdiffstats
path: root/poky/bitbake/lib/toaster/toastergui/templates/package_included_tabs.html
blob: e89fa211c8cbeee5cfb7bf777c2e0889065f18bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33

    <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>
OpenPOWER on IntegriCloud