diff options
| author | Jomar Milan <jomarm@jomarm.com> | 2026-05-30 00:09:59 -0700 |
|---|---|---|
| committer | Jomar Milan <jomarm@jomarm.com> | 2026-05-30 00:09:59 -0700 |
| commit | 453ba51e78024fed7d22f984959b050182badffd (patch) | |
| tree | 0dfb75f0a8c86ee800b62154ce270af720dbe775 /templates/index.html | |
| parent | 144e183280dae877d331acac819c46ef698fe800 (diff) | |
Store sessions in a hash map
Diffstat (limited to 'templates/index.html')
| -rw-r--r-- | templates/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/index.html b/templates/index.html index b97f082..8b531d3 100644 --- a/templates/index.html +++ b/templates/index.html @@ -7,10 +7,10 @@ <body> <h2>Sessions</h2> <ul> -{% for session in sessions %} +{% for (id, session) in sessions %} <li> <span>{{session.steam_name}}'s game</span> - <form action="/session/{{session.steam_id}}"> + <form action="/session/{{id}}"> <input name="passcode" placeholder="Passcode"> <input type="submit"> </form> |
