diff --git a/pinaxcon/templates/symposion/sponsorship/add.html b/pinaxcon/templates/symposion/sponsorship/add.html new file mode 100644 index 0000000000000000000000000000000000000000..90e2b9e4003ffc3cc7ab478ed90deb2e6d105a8f --- /dev/null +++ b/pinaxcon/templates/symposion/sponsorship/add.html @@ -0,0 +1,22 @@ +{% extends "site_base.html" %} + +{% load bootstrap %} +{% load i18n %} +{% load pinax_boxes_tags %} + +{% block head_title %}{% trans "Add a Sponsor" %}{% endblock %} + +{% block body_class %}sponsorships{% endblock %} + +{% block body %} +
+ {% csrf_token %} + {% trans "Add a Sponsor" %} + {{ form|bootstrap_horizontal }} +
+ + Cancel +
+
+ +{% endblock %}