diff options
Diffstat (limited to 'wk9/lect/froshims/templates')
-rw-r--r-- | wk9/lect/froshims/templates/index.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/wk9/lect/froshims/templates/index.html b/wk9/lect/froshims/templates/index.html index d9920da..03eabb0 100644 --- a/wk9/lect/froshims/templates/index.html +++ b/wk9/lect/froshims/templates/index.html @@ -7,9 +7,9 @@ <input autocomplete="off" autofocus name="name" placeholder="Name" type="text"> <select name="sport"> <option disabled selected value="">Sport</option> - <option>Basketball</option> - <option>Soccer</option> - <option>Ultimate Frisbee</option> + {% for sport in sports %} + <option>{{sport}}</option> + {% endfor %} </select> <button type="submit">Register</button> </form> |