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




{% load gstudio_tags %}
{% load i18n %}
{% load tagging_tags comments 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="hidden" value="{{child.id}}" name="parentid">
			<!-- <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"></br>
			<form method="post" action="">{% csrf_token %}
			  <input type="hidden" name="docid" value={{child.id}}>
			  <input type="text" value="" name="texttags"  />
			  <input type="submit" value="Add Tags" name="addtags" />
			</form>
			<br>
			<div class="tags">
			  <p class="gbobject-tags span-16 last">
			    <strong>{% trans "Tags" %}</strong> :
			    {% tags_for_object child as tag_list %}
			    {% for tag in tag_list %}
			    <a href="{% url objectapp_tag_detail tag %}"
			       title="Tag {{ tag }}" rel="tag">{{ tag }}</a>
			    {% empty %}
			    <span>{% trans "No tags" %}</span>
			    {% endfor %}
			  </p>
			</div>
		
			</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 %}