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

Review rooms ?

This is the preview page. Re-arrange users by dragging and dropping them in the rooms.
Once finished, scroll down to either 'Confirm' changes or 'Undo' them.

{% for room in data.items() %} {% if room[0] in all_orders %} {%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 ''}} - {{room_order.room_person_no}} People max

{% 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 %} {% endif %} {% endfor %}

Empty room ?

This is a placeholder room. Place users temporarily in order to free space and arrange rooms
Undo Confirm changes

Confirm arrangement?

Roomless guests will be moved around existing rooms and newly generated ones.
This will also confirm all rooms.

{% endblock %}