Files @ 87f14b8015fa
Branch filter:

Location: symposion_app/symposion_project/templates/sponsorship/_horizontal_by_level.html

Luke Hatcher
adding in basic nav
{% 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 "sponsorship/_sponsor_link.html" with sponsor=sponsor %}
    {% endfor %}
{% endfor %}
</div>