diff --git a/symposion/templates/sponsorship/add.html b/symposion/templates/sponsorship/add.html new file mode 100644 index 0000000000000000000000000000000000000000..afb91b8a25c3a87997380d4d136ea9a565cefe88 --- /dev/null +++ b/symposion/templates/sponsorship/add.html @@ -0,0 +1,22 @@ +{% extends "site_base.html" %} + +{% load bootstrap_tags %} +{% load i18n %} +{% load boxes_tags %} + +{% block head_title %}{% trans "Add a Sponsor" %}{% endblock %} + +{% block body_class %}sponsors{% endblock %} + +{% block body %} +
+ {% csrf_token %} + {% trans "Add a Sponsor" %} + {{ form|as_bootstrap }} +
+ + Cancel +
+
+ +{% endblock %}