summaryrefslogtreecommitdiff
path: root/dedup/templates/choice.html
diff options
context:
space:
mode:
Diffstat (limited to 'dedup/templates/choice.html')
-rw-r--r--dedup/templates/choice.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/dedup/templates/choice.html b/dedup/templates/choice.html
new file mode 100644
index 0000000..8a8d373
--- /dev/null
+++ b/dedup/templates/choice.html
@@ -0,0 +1,11 @@
+{% extends "base.html" %}
+{% block title %}confine {{ adjective|e }}{{ package| e }}{% endblock %}
+{% block content -%}
+<h1>confine {{ adjective|e }}package {{ package|e }}</h1>
+<p>Which of the following do you mean?</p>
+<ul>
+{%- for architecture in architectures|sort -%}
+<li><a href="{{ href|format(architecture)|e }}">{{ architecture|e }}</a></li>
+{%- endfor -%}
+</ul>
+{%- endblock -%}