comparison templates/comments/form.html @ 196:134f726fd62c

Removed extrawhitespaces and moved comments template files to templates folder
author Ahsan Ali Shahid <ahsan.ali.shahid@gmail.com>
date Thu, 04 Jul 2013 15:45:50 +0500
parents comments/form.html@50ba20441122
children 1341435d4d33
comparison
equal deleted inserted replaced
195:baf8776dc44d 196:134f726fd62c
1 {% load comments i18n %}
2
3
4 <form action="{% comment_form_target %}" method="post">
5 {% csrf_token %}
6 {{ form.object_pk }}
7 {{ form.content_type }}
8 {{ form.timestamp }}
9 {{ form.security_hash }}
10 {# if it is has a parent #}
11
12 {% if node.id %}
13 <input type="hidden" name="parent" id="parent_id" value="{{ node.id }}" />
14 <input type = 'button' value = "Reply" onClick= "$(this).ShowCommentForm({{ node.id }})" id = "{{ node.id }}-button"
15 class = "reply-button"/>
16
17 {% endif %}
18 <!-- I have used node id over here so that I can show/hide comment field -->
19 <div class = "comment-box" style="{% if node.id %}display:none {% else %} display:block {%endif%}" id = "{{ node.id }}" >
20 <h4>
21 {%if node.id%}
22 Reply:
23 {%else%} Comment:
24 {%endif%}
25 </h4>
26 {{form.comment}}
27
28 <br/>
29 <input type="submit" value = "Submit" class = 'reply-button' >
30 </div>
31 </form>