{% extends "base.html" %} {% block title %}Furizon 2024 Nosecount{% endblock %} {% block main %}

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.

{% for o in orders.values() %} {% if o.code == o.room_id and o.room_confirmed %}

{{o.room_name}}

{% for m in o.room_members %} {% if m in orders %} {% with person = orders[m] %}
{{person.ans('fursona_name')}}
{% endwith %} {% endif %} {% endfor %}
{% endif %} {% endfor %} {% for o in orders.values() if (o.code == o.room_id and not o.room_confirmed) %} {% if loop.first %}

Unconfirmed rooms

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 %}
{% for m in o.room_members %} {% if m in orders %} {% with person = orders[m] %}
{{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

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 %}
{{person.ans('fursona_name')}}
{% if loop.last %}
{% endif %} {% endfor %} {% for person in orders.values() if person.daily %} {% if loop.first %}

Daily furs!

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

{% endif %}
{{person.ans('fursona_name')}}
{% if loop.last %}
{% endif %} {% endfor %}
{% endblock %}