Files @ 59207eb0c971
Branch filter:

Location: symposion_app/pinaxcon/templates/symposion/sponsorship/add.html

Jamie Lennox
Other suggested django migrations

So django keeps strict synchronization between its code and migrations
so that it can help generating new migrations. These are the additional
suggested migrations. A lot of these are a null effect, some are things
like transforming an unsigned integer to a signed integer. So not super
urgent on a small scale, but worth doing to keep django happy.
{% extends "site_base.html" %}

{% load bootstrap %}
{% load i18n %}


{% block head_title %}<div style="color: white;">{% trans "Add a Sponsor" %}</div>{% endblock %}

{% block body_class %}sponsorships{% endblock %}

{% block content %}
    <div class="jumbotron"
    <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 pad-buttons">
            <br/>
            <input class="btn btn-primary" type="submit" value="Add" />
            <a class="btn btn-default" href="{% url "dashboard" %}">Cancel</a>
        </div>
    </form>
    </div>
{% endblock %}