diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-07-09 10:00:10 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-07-09 10:00:10 +0000 |
commit | 66485a40fb0e7a3905241c1fcfe10a6feef51a3b (patch) | |
tree | 7e1c1ef5875e8fcb74d507fa1efe5d2f2f51ed38 /wk9/lect/froshims/templates | |
parent | 6583298b160057ccecd7720ee663a90d3ec2921a (diff) |
Tue, Jul 9, 2024, 3:00 AM -07:00
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> |