summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHelmut Grohne <helmut@subdivi.de>2019-03-26 21:35:12 +0100
committerHelmut Grohne <helmut@subdivi.de>2019-03-26 21:35:12 +0100
commitd9b341e6d1de3c69be6526ae768d7734a94c4ac0 (patch)
tree89415a3d1feb0ddf339d11b3e7298fce58f19562
parenta2eccde5e1e83f77bd015990279f75f8b3c7db4a (diff)
downloadcrossqa-d9b341e6d1de3c69be6526ae768d7734a94c4ac0.tar.gz
webapp.py: sort the architecture drop down
-rw-r--r--webapp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp.py b/webapp.py
index d37dbda..c6c7d80 100644
--- a/webapp.py
+++ b/webapp.py
@@ -143,7 +143,7 @@ footer {
<input type="hidden" name="source" value="{{ sourcepackage|e }}" />
<select name="architecture">
<option value="any">any</option>
- {%- for architecture in architectures -%}
+ {%- for architecture in architectures|sort -%}
<option value="{{ architecture|e }}">{{ architecture|e }}</option>
{%- endfor -%}
</select>