diff --git a/pinaxcon/templates/symposion/sponsorship/list.html b/pinaxcon/templates/symposion/sponsorship/list.html index 07ab7bca73d8ff36cbcd4ebf0aa99eca2f9ad5de..e18d50e1495585fd1a6251bcbe09b6dfc4f512d5 100644 --- a/pinaxcon/templates/symposion/sponsorship/list.html +++ b/pinaxcon/templates/symposion/sponsorship/list.html @@ -3,3 +3,30 @@ {% block lede %} We're grateful to the following organizations, who've made a substantial contribution to CopyleftConf 2020. Learn how you can join us by checking out our prospectus. {% endblock %} + +{% block content %} + {% sponsor_levels as levels %} + {% for level in levels %} + {% if level.sponsors %} +

{{ level.name }}

+ + {% for sponsor in level.sponsors %} + {% if sponsor.sponsor_logo %} +
+
+

+ + {{ sponsor.name }} + +

+
+
+

{{ sponsor.name }}

+

{{ sponsor.listing_text|urlize|linebreaks }}

+
+
+ {% endif %} + {% endfor %} + {% endif %} + {% endfor %} +{% endblock %}