From 5a7cdf094ac31ee390e939cac06b2fadef85f46c Mon Sep 17 00:00:00 2001 From: Ed Date: Fri, 12 May 2023 00:19:35 +0200 Subject: [PATCH] Fixed issue where nosecount would 500 --- tpl/nosecount.html | 36 ++++++++++++++++++++---------------- 1 file changed, 20 insertions(+), 16 deletions(-) diff --git a/tpl/nosecount.html b/tpl/nosecount.html index e1bed64..d46a0eb 100644 --- a/tpl/nosecount.html +++ b/tpl/nosecount.html @@ -14,15 +14,17 @@

{{o.room_name}}

{% for m in o.room_members %} - {% with person = orders[m] %} -
-
- - + {% if m in orders %} + {% with person = orders[m] %} +
+
+ + +
+
{{person.ans('fursona_name')}}
-
{{person.ans('fursona_name')}}
-
- {% endwith %} + {% endwith %} + {% endif %} {% endfor %}
{% endif %} @@ -36,15 +38,17 @@

{% if o.room_confirmed %}🔒{% endif %}{{o.room_name}}

{% for m in o.room_members %} - {% with person = orders[m] %} -
-
- - + {% if m in orders %} + {% with person = orders[m] %} +
+
+ + +
+
{{person.ans('fursona_name')}}
-
{{person.ans('fursona_name')}}
-
- {% endwith %} + {% endwith %} + {% endif %} {% endfor %}
{% endif %}