Files @ 6770e83e5d57
Branch filter:

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

James Polley
Switch to png as a plain boring attachment

In the body of the email, we can load the image direct from the
site. Prolly gonna fail a lot but at least it's a loud known visible
failure
{% 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>