diff --git a/pinaxcon/templates/symposion/sponsorship/detail.html b/pinaxcon/templates/symposion/sponsorship/detail.html new file mode 100644 index 0000000000000000000000000000000000000000..da19741c59d56f7a4b1fe85331db533ec0cea7f4 --- /dev/null +++ b/pinaxcon/templates/symposion/sponsorship/detail.html @@ -0,0 +1,40 @@ +{% extends "site_base.html" %} + +{% load bootstrap %} +{% load i18n %} + +{% block head_title %}{{ sponsor }}{% endblock %} + +{% block page_title %}{% trans "Sponsorship" %}{% endblock %} + +{% block body %} +

{{ sponsor.name }} ({{ sponsor.level }})

+ +
+ {% csrf_token %} +
+ {{ form|bootstrap_horizontal }} +
+ +

{{ sponsor.level }} Sponsor Benefits

+ + {{ formset.management_form }} + {{ formset.non_form_errors }} + + {% for form in formset.forms %} +
+ +
+ {{ form }} +

{{ form.instance.benefit.description }}

+
+
+ {% endfor %} + +
+ + Cancel +
+ +
+{% endblock %}