summaryrefslogtreecommitdiffstats
path: root/mustache-templates/reproducible/pkgset_navigation.mustache
blob: cd848185e0c12f35d82313fc84e30a67003e7f26 (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>
  {{#pkgset_page}}
  <li>
    <a href="/debian/{{suite}}/{{arch}}/index_pkg_sets.html"
       title="To switch suite and arch, see top left">
      All tracked package sets for <b>{{suite}}/{{arch}}</b>
    </a>
  </li>
  {{/pkgset_page}}
</ul>
{{#package_set_sections}}
<details {{^pkgset_page}}open{{/pkgset_page}}>
  <summary>{{section}} package sets:</summary>
  <ul class="pkgset-list">
  {{#pkgsets}}
  <li class="{{class}}">
    {{#thumb}}
    <a href="/debian/{{suite}}/{{arch}}/pkg_set_{{pkgset_name}}.html">
      <img src="{{thumb}}" class="setview"
           alt="Reproducibility status for packages in {{suite}}/{{arch}} from '{{pkg_name}}'"
           title="{{pkgset_name}}" name="{{pkgset_name}}">
    </a>
    {{/thumb}}
    <a href="/debian/{{suite}}/{{arch}}/pkg_set_{{pkgset_name}}.html">
      {{pkgset_name}}</a>
  </li>
  {{/pkgsets}}
</ul>
</details>
{{/package_set_sections}}
{{#pkgset_page}}
<hr id="footer_separator" />
{{/pkgset_page}}