File diff 87f14b8015fa → b06daba446a6
symposion/templates/sponsorship/_horizontal_by_level.html
Show inline comments
 
new file 100644
 
{% 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>