diff options
author | Valerie R Young <spectranaut@riseup.net> | 2016-06-16 09:45:56 -0400 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-06-17 23:31:29 +0200 |
commit | 0c3fcd537bd06556cda1d290ee926e8365969a04 (patch) | |
tree | 2353ef2e34f743eef00cf5448769f182e9ed3bf3 /bin/templates/package_suitearch_details.mustache | |
parent | eaae777d4ed6a973316c2a96b27422249ddb446f (diff) | |
download | jenkins.debian.net-0c3fcd537bd06556cda1d290ee926e8365969a04.tar.xz |
reproducible debian: improve package page navigation
Changes made:
- suite and arch specific details moved from the top of side bar to
the suite and arch section
- "notes" and "test history" (suite and arch agnostic) move to the top
of side bar
- hover text added to most links, starting with either "Go to:" (if
the link takes you away from package page) or "Show:" (if the link
opens a file in the iframe)
- enabled notifications flag still on top left, by "Test Details" header
reproducible debian: address mattia's code review comments
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin/templates/package_suitearch_details.mustache')
-rw-r--r-- | bin/templates/package_suitearch_details.mustache | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/bin/templates/package_suitearch_details.mustache b/bin/templates/package_suitearch_details.mustache new file mode 100644 index 00000000..685d6631 --- /dev/null +++ b/bin/templates/package_suitearch_details.mustache @@ -0,0 +1,36 @@ +<ul class="children"> + <li> + {{{status_html}}} + {{#build_date}} + <div><span class="build-time">at {{build_date}}</span></div> + {{/build_date}} + </li> + {{#dbd}} + <li> + <div> + <a href="{{dbd_url}}" title="Show: formatted diffoscope results" target="main">differences</a> + {{#dbdtxt_url}} + <a href="{{dbdtxt_url}}" target="main">(txt)</a> + {{/dbdtxt_url}} + </div> + </li> + {{/dbd}} + {{#has_buildloginfo}} + <li> + {{#buildinfo_uri}} + <div> + <a href="{{buildinfo_uri}}" title="Show: build info" target="main">buildinfo</a> + </div> + {{/buildinfo_uri}} + <div> + {{#rbuild_uri}} + <a href="{{rbuild_uri}}" title="Show: log of first build (+some other stuff)" target="main">rbuild ({{rbuild_size}})</a> + {{/rbuild_uri}} + {{#buildlogs}} + <a href="{{build2_uri}}" title="Show: log of second build" target="main">build2 ({{build2_size}})</a> + <a href="{{diff_uri}}" title="Show: diff between the first and second builds" target="main">diff</a> + {{/buildlogs}} + </div> + </li> + {{/has_buildloginfo}} +</ul> |