use proper commit id
[redakcja.git] / apps / wiki_img / templates / wiki_img / save_dialog.html
1 {% load i18n %}
2 <div id="save_dialog" class="dialog" data-ui-jsclass="SaveDialog">
3         <form method="POST" action="">
4         <p>{{ forms.text_save.comment.label }}</p>
5         <p class="help_text">
6                 {{ forms.text_save.comment.help_text}}
7                 <span data-ui-error-for="{{ forms.text_save.comment.name }}"> </span>
8         </p>
9         {{forms.text_save.comment }}
10
11
12
13         {% for f in forms.text_save.hidden_fields %}
14                 {{ f }}
15         {% endfor %}
16
17         <p data-ui-error-for="__all__"> </p>
18
19         <p class="action_area">
20                 <button type="submit" class"ok" data-ui-action="save">Zapisz</button>
21                 <button type="button" class="cancel" data-ui-action="cancel">Anuluj</button>
22         </p>
23         </form>
24 </div>