2015-10-16 17:53:02 +00:00
|
|
|
{% load sponsorship_tags %}
|
|
|
|
{% load thumbnail %}
|
|
|
|
{% load pinax_boxes_tags %}
|
|
|
|
|
|
|
|
{% sponsor_levels as levels %}
|
|
|
|
|
2017-08-13 15:52:25 +00:00
|
|
|
<h3>Sponsors</h3>
|
2015-10-16 17:53:02 +00:00
|
|
|
|
|
|
|
<div class="sponsor-list">
|
|
|
|
{% for level in levels %}
|
|
|
|
{% if level.sponsors %}
|
2017-08-13 15:52:25 +00:00
|
|
|
|
|
|
|
<h4>{{ level.name }}</h4>
|
|
|
|
|
|
|
|
{% for sponsor in level.sponsors %}
|
|
|
|
<div>
|
|
|
|
{% if sponsor.website_logo %}
|
2017-08-17 17:04:57 +00:00
|
|
|
<a href="{{ sponsor.external_url }}">
|
2017-08-13 23:06:48 +00:00
|
|
|
<img src="{% thumbnail sponsor.website_logo '600x360' %}" alt="{{ sponsor.name }}">
|
2017-08-13 15:52:25 +00:00
|
|
|
</a>
|
|
|
|
{% else %}
|
2017-08-17 17:04:57 +00:00
|
|
|
<a href="{{ sponsor.external_url }}">{{ sponsor.name }}</a>
|
2017-08-13 15:52:25 +00:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endfor %}
|
|
|
|
|
2015-10-16 17:53:02 +00:00
|
|
|
{% endif %}
|
2017-08-13 15:52:25 +00:00
|
|
|
|
2015-10-16 17:53:02 +00:00
|
|
|
{% endfor %}
|
|
|
|
</div>
|