summaryrefslogtreecommitdiff
path: root/gstudio/templates/gstudio/tags/comment.html
blob: 423fc937bc3dcf6ef71291c24b57635912d9397a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
{% load gstudio_tags %}
{% load i18n %}

<script type="text/javascript">
$(window).load(function() {
$(".commentsavecontent").hide();
$(".postreply").hide();
});
function deleteclick(delobj)
{
 activity ='deleted_response'
 not_obj=delobj
notifedtdel();
}
</script>
{% if comment.posterior_nodes.count %}
<!--<ul style="display: none;">-->
<ul>
{% for child in comment.posterior_nodes.all %}
       <!-- Flag1 outside {{flag}}-->
        {% for each in child.authors.all %}
        	{% ifequal idusr admin_id %}
<!-- If user is admin -->
<div class="response_change" id="divchange">
<script type="text/javascript">
i = i+1;
if (i%2 == 0)
{
document.getElementById("divchange").setAttribute("id","div1");
}
else
{
document.getElementById("divchange").setAttribute("id","div2");
}
function submtfrm()
{
alert("form to post");
document.forms["response"].submit();

}
</script>


			<li>{{each}}'s Response 
{% if child.rating.get_rating %}
<h5>Current rating is {{ child.rating.get_rating }}<h5/>
{% endif %}
<font style = "color:red;" size = 3>{{child.content}}</font>
   <form method="post" name="response" action=".">{% csrf_token %}
                                <input type="hidden" class="commentreptext" id="text{{child.id}}" name="reply" style="visibility:hidden">
                                <input type="hidden" id="hidden{{child.id}}" value={{child.id}} name="parentid">
                                <input type="hidden" value={{idusr}} name="idusr">

                                 
				<br/>	
				 <input type="button" class="commenteditor" id="{{ child.id }}"  value="Add a Response">
                                 <input type="button" class="commentsavecontent" id="save{{child.id}}" value="Save" onclick="saveclick(document.getElementById('hidden{{child.id}}').value)">
                                <input type="submit" class="postreply" id="submit{{child.id}}" value="Submit">

                                <input type="checkbox" class="chkdel" id="chk{{child.id}}" name="del_comment" value="delete_comment">
                                <input type="submit" class="submitdelete" id="delete{{child.id}}" value="Delete" onclick="deleteclick(document.getElementById('hidden{{child.id}}').value)">

<br/>
<div class="rating">
     Rate the response </br>
                 <input name="star1" type="radio" value=1 class="star"/>
                <input name="star1" type="radio" value=2 class="star"/>
                <input name="star1" type="radio" value=3 class="star"/>
                <input name="star1" type="radio" value=4 class="star"/>
                <input name="star1" type="radio" value=5 class="star"/>
  <!--topic id and user id hidden fields-->
                </br>
                <input type="submit" value="Rate Response">
</div>
                                </form>
</div>


                {% show_comment child idusr flag admin_id attribute%}


                {% else %}
                        {% ifequal idusr each.id %}

<div class="response_change" id="divchange">
<script type="text/javascript">
i = i+1;
if (i%2 == 0)
{
document.getElementById("divchange").setAttribute("id","div1");
}
else
{
document.getElementById("divchange").setAttribute("id","div2");
}
</script>
{{each}}'s Response <br/>
{% if child.rating.get_rating %}
Current rating is {{ child.rating.get_rating }}<br/>
{% endif %}
                        <font style = "color:red;" size ="3">{{child.content}}</font>

			<form method="post" name="response" action="">{% csrf_token %}
                                <input type="hidden" class="commentreptext" id="text{{child.id}}" name="reply" style="visibility:hidden">
                                <input type="hidden" id="hidden{{child.id}}" value={{child.id}} name="parentid">
                                <input type="hidden" value={{idusr}} name="idusr">

                                <br/>
					
				 <input type="button" class="commenteditor" id="{{ child.id }}"  value="Add a Response">
                                 <input type="button" class="commentsavecontent" id="save{{child.id}}" value="Save" onclick="saveclick(document.getElementById('hidden{{child.id}}').value)">
                                <input type="submit" class="postreply" id="submit{{child.id}}" value="Submit">



                                <input type="checkbox" class="chkdel" id="chk{{child.id}}" name="del_comment" value="delete_comment">
                                <input type="submit" class="submitdelete" id="delete{{child.id}}" value="Delete" onclick="deleteclick(document.getElementById('hidden{{child.id}}').value)">

<br/>
<div class="rating">
     Rate the response </br>
                                <input name="star1" type="radio" value=1 class="star"/>
<input name="star1" type="radio" value=2 class="star"/>
                <input name="star1" type="radio" value=3 class="star"/>
                <input name="star1" type="radio" value=4 class="star"/>
                <input name="star1" type="radio" value=5 class="star"/>
                <!--topic id and user id hidden fields-->
                </br>
                <input type="submit" value="Rate Response">
</div>
                                </form>
</div>
                                {% show_comment child idusr flag admin_id attribute%}


                        {% else %}
                                {% ifequal attribute "true" %}

<div class="response_change" id="divchange">
<script type="text/javascript">
i = i+1;
if (i%2 == 0)
{
document.getElementById("divchange").setAttribute("id","div1");
}
else
{
document.getElementById("divchange").setAttribute("id","div2");
}
</script>
{{each}}'s Response <br/>
{% if child.rating.get_rating %}
Current rating is {{ child.rating.get_rating }}<br/>
{% endif %}
                        <font style = "color:red;" size = 3>{{child.content}}</font>

			<form method="post" name="response" action=".">{% csrf_token %}
                              <input type="hidden" class="commentreptext" id="text{{child.id}}" name="reply" style="visibility:hidden">
                               <input type="hidden" id="hidden{{child.id}}" value={{child.id}} name="parentid">
                               <input type="hidden" value={{idusr}} name="idusr">

                                <br/>
					{% if idusr %}
			     <input type="button" class="commenteditor" id="{{ child.id }}"  value="Add a Response">
                                 <input type="button" class="commentsavecontent" id="save{{child.id}}" value="Save" onclick="saveclick(document.getElementById('hidden{{child.id}}').value)">
                                <input type="submit" class="postreply" id="submit{{child.id}}" value="Submit">

{% check_user_admin idusr as admin_usercheck %}
{% if admin_usercheck %}

                                <input type="checkbox" class="chkdel" id="chk{{child.id}}" name="del_comment" value="delete_comment">
                                <input type="submit" class="submitdelete" id="delete{{child.id}}" value="Delete" onclick="deleteclick(document.getElementById('hidden{{child.id}}').value)">                                                

<br/>
{% endif %}
{% for author in child.authors.all %}
{% ifequal author.id idusr  %}

                                <input type="checkbox" class="chkdel" id="chk{{child.id}}" name="del_comment" value="delete_comment">
                                <input type="submit" class="submitdelete" id="delete{{child.id}}" value="Delete" onclick="deleteclick(document.getElementById('hidden{{child.id}}').value)">                                                

<br/>
{% endifequal %}
{% endfor %}

<div class="rating">                                                                                                                       
     Rate this response </br>                                                                                                        
                                <input name="star1" type="radio" value=1 class="star"/>                                              
                <input name="star1" type="radio" value=2 class="star"/>                                                              
                <input name="star1" type="radio" value=3 class="star"/>                                                              
                <input name="star1" type="radio" value=4 class="star"/>                                                              
                <input name="star1" type="radio" value=5 class="star"/>                                                              
                <!--topic id and user id hidden fields-->                                                                            
                </br>                                       
 <input type="submit" value="Rate Response">                                                                          
</div>            
           {% endif %}                                                                                                  
      </form>                                                                          
                 
</div>                                                                                                                               
                                                                                                                               
               {% show_comment child idusr flag admin_id attribute%}    {% endifequal %}                                                                                 
                         {% endifequal %}                                                                                            
               {% endifequal %}                                                                                                      
       {% endfor %}                                                                                                                  
 {% endfor %}                                                                                                                         
</ul>                                                                                                                                
{% endif %}