Javascript refactoring. History view now displays tags
[redakcja.git] / apps / wiki / templates / wiki / save_dialog.html
1 <div id="save_dialog" class="dialog">
2         <p>{{ text_save_form.comment.label }}</p>
3         <p class="help_text">{{text_save_form.comment.help_text}}</p>
4                 {{ text_save_form.comment }}
5         
6         {% if request.user.is_anonymous %}
7         <p>
8                 {{ text_save_form.author.label }}: 
9                 {{ text_save_form.author }}
10                 <span class="help_text">{{ text_save_form.author.help_text }}</span>
11         </p>
12         {% else %}
13         <p>
14                 {{ text_save_form.stage_completed.label }}: 
15                 {{ text_save_form.stage_completed }}
16                 <span class="help_text">{{ text_save_form.stage_completed.help_text }}</span>
17         </p>
18         {% endif %}
19         
20         <p class="action_area">
21                 <button type="submit" class="ok-button">Zapisz</button>
22                 <button class="cancel-button">Anuluj</button>
23         </p>            
24 </div>