diff options
Diffstat (limited to 'dedup')
-rw-r--r-- | dedup/templates/choice.html | 11 |
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 -%} |