teh legendary `Publish' button, oh yeah!
[redakcja.git] / apps / wiki / templates / wiki / pubmark_dialog.html
1 {% load i18n %}
2 <div id="pubmark_dialog" class="dialog" data-ui-jsclass="PubmarkDialog">
3         <form method="POST" action="#">
4                 {% for field in forms.pubmark.visible_fields %}
5                 <p>{{ field.label_tag }} {{ field }} <span data-ui-error-for="{{ field.name }}"> </span></p>
6                 <p>{{ field.help_text }}</p>
7                 {% endfor %}
8
9                 {% for f in forms.pubmark.hidden_fields %}
10                         {{ f }}
11                 {% endfor %}
12                 <p data-ui-error-for="__all__"> </p>
13
14                 <p class="action_area">
15                         <button type="submit" class="ok" data-ui-action="save">{% trans "Save" %}</button>
16                         <button type="button" class="cancel" data-ui-action="cancel">{% trans "Cancel" %}</button>
17                 </p>
18         </form>
19 </div>