{% extends "base.html" %} {% block title %}Room Wizard{% endblock %} {% block head %} {% endblock %} {% block main %}

Review rooms


{% for room in data.items() %} {%with room_order = unconfirmed_orders[room[0]] %}

{{room_order.room_name if room_order.room_name else room[1]['room_name'] if room[1] and room[1]['room_name'] else ''}}

{% for m in room_order.room_members %} {% if m in all_orders %} {% with person = all_orders[m] %}
{% with current=None, order=person, imgSrc='/res/propic/' + (person.ans('propic') or 'default.png'), effects = false, flag = true %} {% include 'blocks/propic.html' %} {% endwith %}
{{person.ans('fursona_name')}}
{% endwith %} {% endif %} {% endfor %} {% for m in room[1]['to_add'] %} {% if m in unconfirmed_orders %} {% with person = unconfirmed_orders[m] %}
{% with current=None, order=person, imgSrc='/res/propic/' + (person.ans('propic') or 'default.png'), effects = false, flag = true %} {% include 'blocks/propic.html' %} {% endwith %}
{{person.ans('fursona_name')}}
{% endwith %} {% endif %} {% endfor %}
{% endwith %} {% endfor %}

Empty room

{% endblock %}