{% extends "base.html" %} {% block title %}Furizon 2024 Nosecount{% endblock %} {% block head %} {% endblock %} {% block main %}
{% if order and order.isAdmin() %} {% endif %}

Welcome to the nosecount page! Here you can see all of the available rooms at the convention, as well as the occupants currently staying in each room. Use this page to find your friends and plan your meet-ups.

{% if filtered and order %} {% for person in filtered.values() %} {% if loop.first %}

{{filter_header}}

{% endif %}
{% with current=order, order=person, imgSrc='/res/propic/' + (person.ans('propic') or 'default.png'), effects = true, flag = true %} {% include 'blocks/propic.html' %} {% endwith %}
{{person.ans('fursona_name')}}
{% if loop.last %}
{% endif %} {% endfor %} {% endif %} {% for o in orders.values() if (o.code == o.room_id and o.room_confirmed) %} {% if loop.first %}

Confirmed rooms{% if order and order.isAdmin() %} ({{loop.length}}){% endif %}

{% endif %}

{{o.room_name}} {% if order and order.isAdmin() %} {% endif %}

{% for m in o.room_members %} {% if m in orders %} {% with person = orders[m] %}
{% with current=order, order=person, imgSrc='/res/propic/' + (person.ans('propic') or 'default.png'), effects = true, flag = true %} {% include 'blocks/propic.html' %} {% endwith %}
{{person.ans('fursona_name')}}
{% endwith %} {% endif %} {% endfor %}
{% endfor %} {% for o in orders.values() if (o.code == o.room_id and not o.room_confirmed) %} {% if loop.first %}

Unconfirmed rooms{% if order and order.isAdmin() %} ({{loop.length}}){% endif %}

These unconfirmed rooms are still being organized and may be subject to change. These rooms may also have openings for additional roommates. If you are interested in sharing a room, you can use this page to find potential roommates

{% endif %}

{{o.room_name}} {% if o.room_person_no - len(o.room_members) > 0 %} - Remaining slots: {{o.room_person_no - len(o.room_members)}} {% endif %} {% if order and order.isAdmin() %} {% endif %}

{% for m in o.room_members %} {% if m in orders %} {% with person = orders[m] %}
{% with current=order, order=person, imgSrc='/res/propic/' + (person.ans('propic') or 'default.png'), effects = true, flag = true %} {% include 'blocks/propic.html' %} {% endwith %}
{{person.ans('fursona_name')}}
{% endwith %} {% endif %} {% endfor %}
{% if loop.last %}{% endif %} {% endfor %} {% for person in orders.values() if not person.room_id and (not person.room_confirmed) and not person.daily %} {% if loop.first %}

Roomless furs{% if order and order.isAdmin() %} ({{loop.length}}){% endif %}

These furs have not yet secured a room for the convention. If you see your name on this list, please make sure to secure a room before the deadline to avoid being placed in a random room. If you are looking for a roommate or have an open spot in your room, you can use this page to find and connect with other furries who are also looking for housing 🎲

{% endif %}
{% with current=order, order=person, imgSrc='/res/propic/' + (person.ans('propic') or 'default.png'), effects = true, flag = true %} {% include 'blocks/propic.html' %} {% endwith %}
{{person.ans('fursona_name')}}
{% if loop.last %}
{% endif %} {% endfor %} {% for person in orders.values() if person.daily %} {% if loop.first %}

Daily furs!{% if order and order.isAdmin() %} ({{loop.length}}){% endif %}

These furs will not stay in our hotels, but may be there with us just a few days!

{% endif %}
{% with current=order, order=person, imgSrc='/res/propic/' + (person.ans('propic') or 'default.png'), effects = true, flag = true %} {% include 'blocks/propic.html' %} {% endwith %}
{{person.ans('fursona_name')}}
{% if loop.last %}
{% endif %} {% endfor %}

Confirm room edit

{% endblock %}