diff options
author | Helmut Grohne <helmut@subdivi.de> | 2019-03-26 21:35:12 +0100 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2019-03-26 21:35:12 +0100 |
commit | d9b341e6d1de3c69be6526ae768d7734a94c4ac0 (patch) | |
tree | 89415a3d1feb0ddf339d11b3e7298fce58f19562 | |
parent | a2eccde5e1e83f77bd015990279f75f8b3c7db4a (diff) | |
download | crossqa-d9b341e6d1de3c69be6526ae768d7734a94c4ac0.tar.gz |
webapp.py: sort the architecture drop down
-rw-r--r-- | webapp.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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> |