summaryrefslogtreecommitdiffstats
path: root/mustache-templates/reproducible/pkgset_navigation.mustache
diff options
context:
space:
mode:
Diffstat (limited to 'mustache-templates/reproducible/pkgset_navigation.mustache')
-rw-r--r--mustache-templates/reproducible/pkgset_navigation.mustache34
1 files changed, 34 insertions, 0 deletions
diff --git a/mustache-templates/reproducible/pkgset_navigation.mustache b/mustache-templates/reproducible/pkgset_navigation.mustache
new file mode 100644
index 00000000..98bfd5ce
--- /dev/null
+++ b/mustache-templates/reproducible/pkgset_navigation.mustache
@@ -0,0 +1,34 @@
+<ul>
+ {{#pkgset_page}}
+ <li id="expand-all-pkgsets">
+ <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}}">
+ <a href="/debian/{{suite}}/{{arch}}/pkg_set_{{pkgset_name}}.html">
+ {{pkgset_name}}
+ </a>
+ {{#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}}
+ </li>
+ {{/pkgsets}}
+</ul>
+</details>
+{{/package_set_sections}}
+{{#pkgset_page}}
+<hr id="footer_separator" />
+{{/pkgset_page}}