1
0
mirror of https://github.com/Adam-Ant/QuotesDB synced 2025-06-15 05:41:13 +00:00

Refactor to use function to set page variables

This commit is contained in:
Adam Dodman
2017-10-05 02:08:32 +01:00
parent f2e490475d
commit 1ba261f4b3
2 changed files with 18 additions and 7 deletions

View File

@ -14,7 +14,7 @@
<div class="form-group">
<label for="user">User:</label>
<select class="form-control" id="user" name="user">
{% for user in users %}
{% for user in data %}
<option value="{{ user[0] }}">{{ user[1] }}</option>
{% endfor %}
</select>