view templates/bundle/form.djhtml @ 182:4a63f5d762a3

Fix submit button text in bundle form "Save bundle" works for both creating and editing so it suffices for now.
author dellsystem <ilostwaldo@gmail.com>
date Sat, 27 Oct 2012 15:40:33 -0400
parents 86129d185ddb
children b711f0087709
line wrap: on
line source

{% load i18n %}

<form method="post" action="" class="snippetform"
    enctype="multipart/form-data">
    {% if form.non_field_errors %}
    <div class="errors">
        {{ form.non_field_errors }}
    </div>
    {% endif %}

    {% csrf_token %}

    {% for field in form %}
    {% include "simple_field.djhtml" %}
    {% endfor %}

    <br />
    <div class="center-align">
        <button type="submit" class="button large">{% trans "Save bundle" %}</button>
    </div>
</form>