Mercurial > hg > agora-dellsystem
view templates/bundle/form.djhtml @ 190:95edf106bdef default tip
Create BundleVersion when uploading text bundles
Forgot to add that earlier
author | dellsystem <ilostwaldo@gmail.com> |
---|---|
date | Tue, 19 Feb 2013 01:53:59 -0500 |
parents | b711f0087709 |
children |
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 %} {% if not field.is_hidden %} {% include "simple_field.djhtml" %} {% endif %} {% endfor %} <br /> <div class="center-align"> <button type="submit" class="button large">{% trans "Save bundle" %}</button> </div> </form>