summaryrefslogtreecommitdiff
path: root/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html4
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>