2015-10-16 17:53:02 +00:00
|
|
|
{% extends "site_base.html" %}
|
|
|
|
|
|
|
|
{% load sponsorship_tags %}
|
2017-09-27 13:46:13 +00:00
|
|
|
{% load lca2018_tags %}
|
2015-10-16 17:53:02 +00:00
|
|
|
{% load i18n %}
|
|
|
|
|
|
|
|
{% block head_title %}{% trans "About Our Sponsors" %}{% endblock %}
|
|
|
|
|
|
|
|
{% block body_class %}sponsorships{% endblock %}
|
|
|
|
|
2017-02-22 06:38:18 +00:00
|
|
|
{% block content %}
|
|
|
|
<div class="jumbotron-white" id="sponsors" style="width: 100%;">
|
2015-10-16 17:53:02 +00:00
|
|
|
<h1>{% trans "About Our Sponsors" %}</h1>
|
2017-02-22 06:38:18 +00:00
|
|
|
{% comment %}
|
2015-10-16 17:53:02 +00:00
|
|
|
<a href="{% url "pages_page" "sponsors/prospectus/" %}" class="btn">Learn how to become a sponsor <span class="arrow"></span></a>
|
2017-02-22 06:38:18 +00:00
|
|
|
{% endcomment %}
|
2015-10-16 17:53:02 +00:00
|
|
|
|
|
|
|
{% sponsor_levels as levels %}
|
|
|
|
{% for level in levels %}
|
|
|
|
{% if level.sponsors %}
|
|
|
|
<h3>{{ level.name }}</h3>
|
|
|
|
|
|
|
|
{% for sponsor in level.sponsors %}
|
2017-02-22 06:38:18 +00:00
|
|
|
{% if sponsor.sponsor_logo %}
|
2015-10-16 17:53:02 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-2">
|
|
|
|
<h2>
|
|
|
|
<a href="{{ sponsor.external_url }}">
|
2017-02-22 06:38:18 +00:00
|
|
|
<img src="{% sponsor_thumbnail sponsor.sponsor_logo %}" alt="{{ sponsor.name }}" class="thumbnail"/>
|
2015-10-16 17:53:02 +00:00
|
|
|
</a>
|
|
|
|
</h2>
|
|
|
|
</div>
|
2017-02-22 06:38:18 +00:00
|
|
|
<div class="col-md-7">
|
2015-10-16 17:53:02 +00:00
|
|
|
<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 %}
|
2017-02-22 06:38:18 +00:00
|
|
|
</div> <!-- jumbotron-white -->
|
2015-10-16 17:53:02 +00:00
|
|
|
{% endblock %}
|