Files @ d3a8b39a7b01
Branch filter:

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

Christopher Neugebauer
Adds 2em to the bottom of the illustration div in compact panels (#26)
{% load sponsorship_tags %}

{% sponsor_levels as levels %}

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