Repository URL to install this package:
|
Version:
2.1 ▾
|
{% extends "base.html" %}
{% load i18n %}
{% block content %}
{% if form.errors %}<h1>{% trans "Please correct the following errors" %}</h1>{% else %}<h1>{% trans "Submit" %}</h1>{% endif %}
<form action="" method="post">{% csrf_token %}
<table>
{{ form }}
</table>
<input type="hidden" name="{{ stage_field }}" value="1" />
<p><input type="submit" value="{% trans "Preview" %}" /></p>
</form>
{% endblock %}