Files @ c8218bb9d0ea
Branch filter:

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

James Polley
Correct variable name to reflect what it's naming

IT's not the container name, it's the image name. Fix the name to be
less confusing.
{% 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 class="sponsor-list">
            {% include "symposion/sponsorship/_sponsor_link.html" with sponsor=sponsor %}
        </div>
    {% endfor %}
{% endfor %}
</div>