Enable the preview buttons on comment forms.
[matthijs/projects/xerxes.git] / templates / influences / influence_comments_block.html
1 {% load i18n %}
2 {% load threadedcommentstags %}
3
4 <script type="text/javascript">
5     function showReply(comment_id) {
6         YAHOO.util.Dom.setStyle('replyForm' + comment_id, 'display', 'block');
7         YAHOO.util.Dom.setStyle('replyLink' + comment_id, 'display', 'none');
8     }
9
10     function hideReply(comment_id) {
11         YAHOO.util.Dom.setStyle('replyForm' + comment_id, 'display', 'none');
12         YAHOO.util.Dom.setStyle('replyLink' + comment_id, 'display', 'block');
13     }
14 </script>
15
16 {% if comments %}
17     {% for comment in comments %}
18         <div style="margin-left: {{ comment.depth }}em;" class="comment{% if not comment.is_public %} private{% endif %}">
19             {{ comment.user }} said:<br/>
20             {% auto_transform_markup comment %}
21                         <p style="display:none;" id="replyLink{{comment.id}}">
22                                 <a href="javascript:showReply('{{comment.id}}');">{% trans "Reply to this comment" %}</a>
23                         </p>
24                         <div id="replyForm{{comment.id}}" class="commentReplyForm">
25                                 <script type="text/javascript">hideReply('{{comment.id}}');</script>
26                                 <form method="post" action="{% url influences_influence_comment_parent object.id,comment.id %}">
27                                         <p><a href="javascript:hideReply('{{comment.id}}');">{% trans "Cancel reply" %}</a></p>
28                                         <table>
29                                         {{ comment.reply_form.as_table }}
30                                         </table>
31                                         <div>
32                     <input type="submit" value="{% trans "Reply to this comment" %}" />
33                     <input type="submit" name="preview" value="{% trans "Preview" %}" />
34                     </div>
35                                 </form>
36                         </div>
37         </div>
38     {% endfor %}
39 {% else %}
40     {% trans "No comments were added yet" %}
41 {% endif %}
42
43 <p style="display:none;" id="replyLink"><a href="javascript:showReply('')">Add comment</a></p>
44 <div id="replyForm">
45 <script type="text/javascript">hideReply('')</script>
46 <h3>{% trans "Add comment" %}</h3>
47 <form method="post" action="{% url influences_influence_comment object.id %}">
48         <p><a href="javascript:hideReply('')">Cancel comment</a></p>
49     <table>
50     {{ comment_form.as_table }}
51     </table>
52     <div>
53     <input type="submit" value="{% trans "Add comment" %}" />
54     <input type="submit" name="preview" value="{% trans "Preview" %}" />
55     </div>
56 </form>
57 </div>