diff options
author | Simon Rettberg | 2017-02-08 13:40:51 +0100 |
---|---|---|
committer | Simon Rettberg | 2017-02-08 13:40:51 +0100 |
commit | 0ec53acd90dbc6fce46ad36c1d179c121442920f (patch) | |
tree | 22ce3e5c02ecc60b0fefc37cca5b2d2ac9cf6f16 /modules-available/statistics_reporting | |
parent | [statistics_reporting] Consistent field naming across classes, templates etc. (diff) | |
download | slx-admin-0ec53acd90dbc6fce46ad36c1d179c121442920f.tar.gz slx-admin-0ec53acd90dbc6fce46ad36c1d179c121442920f.tar.xz slx-admin-0ec53acd90dbc6fce46ad36c1d179c121442920f.zip |
[statistics_reporting] Fix my messed up tag order in days selection
Diffstat (limited to 'modules-available/statistics_reporting')
-rw-r--r-- | modules-available/statistics_reporting/templates/columnChooser.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules-available/statistics_reporting/templates/columnChooser.html b/modules-available/statistics_reporting/templates/columnChooser.html index 9707c970..75dfb34f 100644 --- a/modules-available/statistics_reporting/templates/columnChooser.html +++ b/modules-available/statistics_reporting/templates/columnChooser.html @@ -17,7 +17,7 @@ <div class="col-md-4"> <select name="cutoff" id="select-cutoff" class="form-control"> {{#days}} - <option value="{{days}}" {{selected}}>{{lang_days}}: {{days}}</option> + <option value="{{days}}" {{selected}}>{{days}} {{lang_days}}</option> {{/days}} </select> </div> |