2015-10-16 17:53:02 +00:00
|
|
|
{% extends "site_base.html" %}
|
|
|
|
|
|
|
|
{% load bootstrap %}
|
|
|
|
{% load i18n %}
|
|
|
|
|
2017-02-22 09:17:24 +00:00
|
|
|
|
|
|
|
{% block head_title %}<div style="color: white;">{% trans "Add a Sponsor" %}</div>{% endblock %}
|
2015-10-16 17:53:02 +00:00
|
|
|
|
|
|
|
{% block body_class %}sponsorships{% endblock %}
|
|
|
|
|
2017-02-22 09:17:24 +00:00
|
|
|
{% block content %}
|
|
|
|
<div class="jumbotron"
|
2015-10-16 17:53:02 +00:00
|
|
|
<form method="POST" action="{% url "sponsor_add" %}" class="form-horizontal">
|
|
|
|
{% csrf_token %}
|
|
|
|
<legend>{% trans "Add a Sponsor" %}</legend>
|
|
|
|
{{ form|bootstrap_horizontal }}
|
2017-02-22 09:17:24 +00:00
|
|
|
|
|
|
|
<div class="form-actions pad-buttons">
|
|
|
|
<br/>
|
2015-10-16 17:53:02 +00:00
|
|
|
<input class="btn btn-primary" type="submit" value="Add" />
|
|
|
|
<a class="btn btn-default" href="{% url "dashboard" %}">Cancel</a>
|
|
|
|
</div>
|
|
|
|
</form>
|
2017-02-22 09:17:24 +00:00
|
|
|
</div>
|
2015-10-16 17:53:02 +00:00
|
|
|
{% endblock %}
|