Files @ 7fac10241ec7
Branch filter:

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

Joel Addison
Improve attendee reports

Display attendee profile data in normal table without DataTables so
sorting is not applied, causing data to be confusing to read.
Include item quantity in attendee data report for accurate schwag packing.
{% extends "site_base.html" %}

{% load sponsorship_tags %}
{% load lca2018_tags %}
{% load i18n %}

{% block head_title %}{% trans "About Our Sponsors" %}{% endblock %}

{% block body_class %}sponsorships{% endblock %}

{% block content %}
    <div class="jumbotron-white" id="sponsors" style="width: 100%;">
    <h1>{% trans "About Our Sponsors" %}</h1>
    {% comment %}
    <a href="{% url "pages_page" "sponsors/prospectus/" %}" class="btn">Learn how to become a sponsor <span class="arrow"></span></a>
    {% endcomment %}

    {% sponsor_levels as levels %}
    {% for level in levels %}
        {% if level.sponsors %}
            <h3>{{ level.name }}</h3>

            {% for sponsor in level.sponsors %}
                {% if sponsor.sponsor_logo %}
                    <div class="row">
                        <div class="col-md-2">
                            <h2>
                                <a href="{{ sponsor.external_url }}">
                                    <img src="{% sponsor_thumbnail sponsor.sponsor_logo %}" alt="{{ sponsor.name }}" class="thumbnail"/>
                                </a>
                            </h2>
                        </div>
                        <div class="col-md-7">
                            <h5>{{ sponsor.name }}</h5>
                            <p><a href="{{ sponsor.external_url }}">{{ sponsor.external_url }}</a></p>
                            <p>{{ sponsor.listing_text|urlize|linebreaks }}</p>
                        </div>
                    </div>
                {% endif %}
            {% endfor %}
        {% endif %}
    {% endfor %}
    </div> <!-- jumbotron-white -->
{% endblock %}