{% extends "base.html" %} {% block title %}Your Booking{% endblock %} {% block main %}

{{order.ans('fursona_name')}}'s booking

{% if order.status() == 'pending' %}

⚠️ Your order is still pending. You will not be able to reserve a room. Check your payment status

{% endif %} {% if not order.ans('propic') %}

⚠️ You still haven't uploaded a profile pic. Upload one now

{% endif %}

Room Status: {% if order.ans('room_confirmed') %} {{order.ans('room_confirmed')}} room confirmed

Your room is confirmed! Enjoy the convention :)

{% elif order.ans('room_members') %} pending room

You have a room, but it is not confirmed! Make sure all room owners have paid, then use the button below to reserve the room for two people.

Your room
{% set room = namespace(forbidden=false) %} {% for person in roommate_orders %}

{{person.ans('fursona_name')}}

{{person.ans('staff_title') if person.ans('staff_title') else ''}}{{' · Fursuiter' if person.ans('is_fursuiter') != 'No'}}

{{('UNPAID' if person.status() == 'pending')|safe}}

{% if person.status() != 'paid' %} {% set room.forbidden = True %} {% endif %} {% endfor %}
Available rooms
Single room {{room_qty[1]}} available
Double room {{room_qty[2]}} available
Triple room {{room_qty[3]}} available
Quadruple room {{room_qty[4]}} available
Quintuple room {{room_qty[5]}} available
{% if room.forbidden %}

Since at least one of your roommates still have a pending reservation, you will not be able to reserve a room for now.

{% else %} {% endif %} {% else %} no room

You currently don't have any room. If you don't create or join one within 42 days, 10 hours, 32 minutes, 13 seconds, we will assign you to a random one.

{% endif %}
{% endblock %}