Files @ 4ecd4d0aa4c7
Branch filter:

Location: CopyleftConf/copyleftconf-website/pinaxcon/templates/symposion/sponsorship/add.html

Christopher Neugebauer
Adds a clearer “check out and pay” wording to buttons on the dashboard.

Fixes #8.
{% 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 %}
    <form method="POST" action="{% url "sponsor_add" %}" class="form-horizontal">
        {% csrf_token %}
        <legend>{% trans "Add a Sponsor" %}</legend>
        {{ form|bootstrap_horizontal }}
        <div class="form-actions">
            <input class="btn btn-primary" type="submit" value="Add" />
            <a class="btn btn-default" href="{% url "dashboard" %}">Cancel</a>
        </div>
    </form>

{% endblock %}