summaryrefslogtreecommitdiff
path: root/templates/packages/differences.html
diff options
context:
space:
mode:
authorJohannes Krampf <johannes.krampf@gmail.com>2011-12-03 14:44:42 +0100
committerJohannes Krampf <johannes.krampf@gmail.com>2011-12-03 14:44:42 +0100
commit183c4d9cefa95f46c3fa3a6936f837542426eac2 (patch)
tree32b2af21ef05a6dee93546328120d0f9183578e2 /templates/packages/differences.html
parentf71f3e23eda8e1ff447340812025ab724aff14cb (diff)
Allow architecure selection for difference view
Diffstat (limited to 'templates/packages/differences.html')
-rw-r--r--templates/packages/differences.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/templates/packages/differences.html b/templates/packages/differences.html
index d9b5f088..0412f8c2 100644
--- a/templates/packages/differences.html
+++ b/templates/packages/differences.html
@@ -6,6 +6,35 @@
{% if differences %}
<div id="differences-filter" class="box filter-criteria">
<h2>Package Differences by Architecture</h2>
+ <h3>Select architectures</h3>
+ <form id="arch_selector" method="get" action=".">
+ <fieldset>
+ <legend>Select arches</legend>
+ <div><label for="arch_a" title="Architecture A">Architecture A</label>
+ <select name="arch_a" id="arch_a">
+ {% for arch in arches %}
+ <option
+ {% if arch == arch_a %}
+ selected="selected"
+ {% endif %}
+ >{{ arch }}</option>
+ {% endfor %}
+ </select>
+ </div>
+ <div><label for="arch_b" title="Architecture B">Architecture B</label>
+ <select name="arch_b" id="arch_b">
+ {% for arch in arches %}
+ <option
+ {% if arch == arch_b %}
+ selected="selected"
+ {% endif %}
+ >{{ arch }}</option>
+ {% endfor %}
+ </select>
+ </div>
+ <div><label>&nbsp;</label><input type="submit" title="Show difference between selected architectures"></div>
+ </fieldset>
+ </form>
<h3>Filter Differences View</h3>
<form id="diff_filter" method="post" action=".">
<fieldset>