summaryrefslogtreecommitdiff
path: root/gstudio/templates/gstudio/tags/commentpage.html
blob: a998a7ff5746dcbf3749eef5c83ef3deeda226f6 (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




{% load gstudio_tags %}
{% load i18n %}



{% 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 %}
			<font style = "color:red;" size = 3><li>{{child.title}}</font></br> {{child.content}}
			<form method="post" action=".">{% csrf_token %}
			<!-- <textarea name = "replytosection" id="replytosection" rows="10" cols="50"></textarea> -->
			<!-- <p>org -->
			<!-- <textarea name = "orgreply" id="orgreplysection" rows="10" cols="50"></textarea> -->
			<!-- </p> -->
		  	<input type="hidden" value={{child.id}} name = "parentid">
			<input type="hidden" value={{idusr}} name="idusr">
			<!-- <input type="button"  id="createsubsection" value="Create Sub"> -->
		    	<!-- <input type="submit" value="Create Subsection"> -->
			<!-- <input type="button" value="Reply" id="reply"></br> -->
			<!-- <input type="button" name="savereply" id="savereply" value="Save Reply"></p></br> -->
			<input type="button" id="editsubsec" value="Edit"/>
			<input type="button" id="savesubsec1" value="Save"/>
			<input type="button" id="subsecorg" value="{{child.content_org}}" style="visibility:hidden;"/>
			<input type="button" id="subsecid" value="{{child.id}}" style="visibility:hidden;"/>	
			<input type="checkbox" name="del_comment" value="delete_comment">
        		<input type="submit" value="Delete this Subsection">
			</form>
			{% show_commentpage child idusr flag admin_id attribute%}
			</li>
        	{% else %}
			{% ifequal idusr each.id %}
				<li>{{each}} says <font style = "color:red;" size = 3>{{child.title}}</font>
				<form method="post" action=".">{% csrf_token %}
				<input type="text" name = "replytosection">
			  	<input type="hidden" value={{child.id}} name = "parentid">
				<input type="hidden" value={{idusr}} name="idusr">
			    	<input type="submit" value="Reply to section">
				<input type="checkbox" name="del_comment" value="delete_comment">
        			<input type="submit" value="delete this comment">
				</form>
				{% show_commentpage child idusr flag admin_id attribute%}
				</li>
			{% else %}
				{% ifequal attribute "true" %}
                                 
				<li>{{each}} says <font style = "color:red;" size = 3>{{child.title}}</font>
				<form method="post" action=".">{% csrf_token %}
				<input type="text" name = "replytosection">
			  	<input type="hidden" value={{child.id}} name = "parentid">
				<input type="hidden" value={{idusr}} name="idusr">
			    	<input type="submit" value="Reply to section">
				<input type="checkbox" name="del_comment" value="delete_comment">
        			<input type="submit" value="delete this comment">
				</form>
				{% show_commentpage child idusr flag admin_id attribute%}
				</li>
	       	 		{% endifequal %}
                         {% endifequal %}
               {% endifequal %}
       {% endfor %}
	
	
{% endfor %}
</ul>
{% endif %}