diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/beerpage.jinja2 | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/templates/beerpage.jinja2 b/templates/beerpage.jinja2 index 1fead45..23ed6bf 100644 --- a/templates/beerpage.jinja2 +++ b/templates/beerpage.jinja2 @@ -21,4 +21,21 @@ <select> </select> </div> -{% endblock %}
\ No newline at end of file + + <div class="row"> + {% for attr in attrs %} + <div class="col col-3"> + <select class="form-control" name="{{ attr }}"> + <option value="-3">A lot less {{ attr }}</option> + <option value="-2">Less {{ attr }}</option> + <option value="-1">A little less {{ attr }}</option> + <option value="0" selected>Same {{ attr }}</option> + <option value="1">A little more {{ attr }}</option> + <option value="2">More {{ attr }}</option> + <option value="3">A lot more {{ attr }}</option> + </select> + </div> + {% endfor %} + </div> + +{% endblock %} |