2023-12-30 10:27:42 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block title %}Furizon 2024 Fursuitcount{% endblock %}
|
|
|
|
{% block main %}
|
|
|
|
<main class="container">
|
|
|
|
<header>
|
|
|
|
<picture>
|
|
|
|
<source srcset="/res/furizon.png" media="(prefers-color-scheme:dark)">
|
|
|
|
<img src="/res/furizon-light.png" style="height:4rem;text-align:center;">
|
|
|
|
</picture>
|
|
|
|
</header>
|
|
|
|
<!--h2>Fursuit-count!</h2-->
|
|
|
|
<p>Welcome to the fursuit-count page! Here you can see all of the fursuits that you'll find at Furizon!</p>
|
|
|
|
{% for person in orders.values() if person.is_fursuiter%}
|
|
|
|
{% if loop.first %}
|
|
|
|
<div class="grid people" style="padding-bottom:1em;">
|
|
|
|
{% endif %}
|
|
|
|
<div style="margin-bottom: 1em;">
|
2024-01-13 18:45:32 +00:00
|
|
|
{% with current=order, order=person, imgSrc='/res/propic/' + (person.ans('propic_fursuiter') or 'default.png'), effects = true, flag = true %}
|
2024-01-03 16:18:31 +00:00
|
|
|
{% include 'blocks/propic.html' %}
|
|
|
|
{% endwith %}
|
2023-12-30 10:27:42 +00:00
|
|
|
<h5>{{person.ans('fursona_name')}}</h5>
|
|
|
|
</div>
|
|
|
|
{% if loop.last %}</div>{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
</main>
|
|
|
|
{% endblock %}
|