Fixed issue where nosecount would 500

This commit is contained in:
Ed 2023-05-12 00:19:35 +02:00
parent 6609f436ae
commit 5a7cdf094a
1 changed files with 20 additions and 16 deletions

View File

@ -14,6 +14,7 @@
<h4 style="margin-top:1em;">{{o.room_name}}</h4> <h4 style="margin-top:1em;">{{o.room_name}}</h4>
<div class="grid people" style="padding-bottom:1em;"> <div class="grid people" style="padding-bottom:1em;">
{% for m in o.room_members %} {% for m in o.room_members %}
{% if m in orders %}
{% with person = orders[m] %} {% with person = orders[m] %}
<div style="margin-bottom: 1em;"> <div style="margin-bottom: 1em;">
<div class="propic-container"> <div class="propic-container">
@ -23,6 +24,7 @@
<h5>{{person.ans('fursona_name')}}</h5> <h5>{{person.ans('fursona_name')}}</h5>
</div> </div>
{% endwith %} {% endwith %}
{% endif %}
{% endfor %} {% endfor %}
</div> </div>
{% endif %} {% endif %}
@ -36,6 +38,7 @@
<h3>{% if o.room_confirmed %}🔒{% endif %}{{o.room_name}}</h3> <h3>{% if o.room_confirmed %}🔒{% endif %}{{o.room_name}}</h3>
<div class="grid people" style="padding-bottom:1em;"> <div class="grid people" style="padding-bottom:1em;">
{% for m in o.room_members %} {% for m in o.room_members %}
{% if m in orders %}
{% with person = orders[m] %} {% with person = orders[m] %}
<div style="margin-bottom: 1em;"> <div style="margin-bottom: 1em;">
<div class="propic-container"> <div class="propic-container">
@ -45,6 +48,7 @@
<h5>{{person.ans('fursona_name')}}</h5> <h5>{{person.ans('fursona_name')}}</h5>
</div> </div>
{% endwith %} {% endwith %}
{% endif %}
{% endfor %} {% endfor %}
</div> </div>
{% endif %} {% endif %}