2017-08-14 19:34:53 +00:00
|
|
|
{% extends "symposion/sponsorship/list_.html" %}
|
|
|
|
|
2020-01-23 16:40:41 +00:00
|
|
|
{% load sponsorship_tags %}
|
2020-01-23 16:41:48 +00:00
|
|
|
{% load thumbnail %}
|
2020-01-23 16:40:41 +00:00
|
|
|
|
2017-08-14 19:34:53 +00:00
|
|
|
{% block lede %}
|
2020-02-11 15:18:40 +00:00
|
|
|
We're grateful to the following organizations, who've made a substantial contribution to CopyleftConf 2020.
|
2017-08-14 19:34:53 +00:00
|
|
|
{% endblock %}
|
2020-01-23 16:39:46 +00:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
{% sponsor_levels as levels %}
|
|
|
|
{% for level in levels %}
|
|
|
|
{% if level.sponsors %}
|
|
|
|
<h2>{{ level.name }}</h2>
|
|
|
|
|
|
|
|
{% for sponsor in level.sponsors %}
|
|
|
|
<div class="row">
|
2020-01-23 16:53:06 +00:00
|
|
|
{% if sponsor.sponsor_logo %}
|
2020-01-23 16:39:46 +00:00
|
|
|
<div class="col-md-4">
|
|
|
|
<h2>
|
|
|
|
<a href="{{ sponsor.external_url }}">
|
|
|
|
<img style="width: 90%; margin-right: 10%;" src="{% thumbnail sponsor.website_logo '600x320' %}" alt="{{ sponsor.name }}" />
|
|
|
|
</a>
|
|
|
|
</h2>
|
|
|
|
</div>
|
|
|
|
<div class="col-md-8">
|
2020-01-23 16:53:06 +00:00
|
|
|
{% else %}
|
|
|
|
<div class="col-md-12">
|
|
|
|
{% endif %}
|
2020-01-23 16:39:46 +00:00
|
|
|
<h3><a href="{{ sponsor.external_url }}">{{ sponsor.name }}</a></h3>
|
|
|
|
<p>{{ sponsor.listing_text|urlize|linebreaks }}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|