summaryrefslogtreecommitdiffstats
path: root/mustache-templates/reproducible/pkgset_navigation.mustache
diff options
context:
space:
mode:
authorValerie R Young <spectranaut@riseup.net>2016-07-26 14:28:34 -0400
committerHolger Levsen <holger@layer-acht.org>2016-07-28 14:06:25 -0400
commita7683ad505585be4902f4d55931eaa89c47344aa (patch)
tree7a61d2e86cabe5d178d0c40ebc2838e56817417b /mustache-templates/reproducible/pkgset_navigation.mustache
parent1b4dc1b3191e3623a0eeb7cacef80be1ab71d0a2 (diff)
downloadjenkins.debian.net-a7683ad505585be4902f4d55931eaa89c47344aa.tar.xz
reproducible debian: move mustache template directory out of bin
Signed-off-by: Holger Levsen <holger@layer-acht.org>
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}}