Files @ 3ffbc9855fa8
Branch filter:

Location: symposion_app/pinaxcon/templates/symposion/sponsorship/_horizontal_by_level.html

Sachi King
cleanup sym/sched/base.html
{% load sponsorship_tags %}

{% sponsor_levels as levels %}

<div class="sponsor-list">
{% for level in levels %}
    <h3>{{ level.name }}</h3>
    {% for sponsor in level.sponsors %}
        {% include "symposion/sponsorship/_sponsor_link.html" with sponsor=sponsor %}
    {% endfor %}
{% endfor %}
</div>