summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorJomar Milan <jomarm@jomarm.com>2026-05-30 23:06:35 -0700
committerJomar Milan <jomarm@jomarm.com>2026-05-30 23:06:35 -0700
commit90d97e089d3b56e0e9efde3693f106d035bb88e8 (patch)
treee7e68fa9559d5da1e55338991bd293cb36ccbf5e /templates
parent21be142ed526c5ec88c14c3ea6cad043a075a2b9 (diff)
Add route to accept player hand updates
Diffstat (limited to 'templates')
-rw-r--r--templates/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/index.html b/templates/index.html
index 78d60e9..b2c777f 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -7,7 +7,7 @@
<body>
<h1>Sessions</h1>
<ul>
-{% for (id, session) in sessions %}
+ {% for (id, session) in sessions %}
<li>
<span>{{session.steam_name}}'s game ({{id}})</span>
<form action="/session/{{id}}">
@@ -15,7 +15,7 @@
<input type="submit">
</form>
</li>
-{% endfor %}
+ {% endfor %}
</ul>
</body>
</html> \ No newline at end of file