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

Sponsor count!

Welcome to the sponsor-count page! This is the list of users that support us! Thanks really a lot to everyone ❤️

{% for person in orders.values() if person.sponsorship == "super"%} {% if loop.first %}

Super sponsors!

{% 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.sponsorship == "normal"%} {% if loop.first %}

Sponsors

{% 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 %}
{% endblock %}