Allow nwg wizard to have a per-step template. Write templates for step 0 and add/edit step 1. - Legacy-Id: 149
15 lines
370 B
HTML
15 lines
370 B
HTML
{% extends "mailinglists/nwg_wizard_base.html" %}
|
|
|
|
{% block nwgcontent %}
|
|
<form action="." method="POST">
|
|
FORM( {{ step }} ):<table> {{ form }} </table>
|
|
|
|
step_info : <input type="hidden" name="{{ step_field }}" value="{{ step }}" />
|
|
|
|
previous_fields: {{ previous_fields }}
|
|
|
|
<input type="submit">
|
|
</form>
|
|
|
|
{% endblock %}
|