Files @ 2a720bd46bb4
Branch filter:

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

Joel Addison
Tickets for LCA2021

Disable lots of inventory that does not exist for a virtual conf.
Add Swag Badge category and product.
Adjust attendee profile to hide irrelevant questions.
{% 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>