diff options
author | Helmut Grohne <helmut@subdivi.de> | 2014-07-22 19:47:34 +0200 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2014-07-22 19:47:34 +0200 |
commit | e15afaf30b1b692603bc761b22670607d54aeda0 (patch) | |
tree | 05d48342572809c2001aad0b9a5680df5a9a27d3 /dedup/templates/choice.html | |
parent | 04597f25729740406775a3dff528c9774c84efd5 (diff) | |
download | debian-dedup-multiarch.tar.gz |
let the user choose underspecified packagesmultiarch
Diffstat (limited to 'dedup/templates/choice.html')
-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 -%} |