equal
deleted
inserted
replaced
|
1 {% extends "site/layout/base_workspace.html" %} |
|
2 {% load com %} |
|
3 {% load i18n %} |
|
4 |
|
5 {% block head %} |
|
6 {% endblock %} |
|
7 |
|
8 {% block main %} |
|
9 |
|
10 {% block pre_form %} |
|
11 {% endblock %} |
|
12 |
|
13 <form enctype="multipart/form-data" class="wizard-form" action="." method="post"> |
|
14 |
|
15 <table summary="form" class="wide_form"> |
|
16 <tbody> |
|
17 {% if form %} |
|
18 {% include "site/macros/form_fields.html" %} |
|
19 {% endif %} |
|
20 |
|
21 {% if forms %} |
|
22 {% for form in forms %} |
|
23 {% include "site/macros/form_fields.html" %} |
|
24 {% endfor %} |
|
25 {% endif %} |
|
26 |
|
27 <tr> |
|
28 <td style="vertical-align: top; width: 20%; text-align:right;"> |
|
29 </td> |
|
30 <td> |
|
31 <label> </label> |
|
32 <input name="{% if save_name %}{{ save_name }}{% else %}{% blocktrans %}Save{% endblocktrans %}{% endif %}" type="submit" value="{% if save_name %}{{ save_name }}{% else %}{% blocktrans %}Save{% endblocktrans %}{% endif %}"/> |
|
33 {% block buttons %} |
|
34 {% endblock %} |
|
35 </td> |
|
36 </tr> |
|
37 </tbody> |
|
38 </table> |
|
39 |
|
40 </form> |
|
41 |
|
42 {% block post_form %} |
|
43 {% endblock %} |
|
44 |
|
45 {% endblock %} |