summaryrefslogtreecommitdiff
path: root/gstudio/templates/gstudio/docu.html
blob: dc9f151b0640c10236d136f2aa9ad0273382c6d3 (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
 
<html>

<body>
{% extends "gstudio/base.html" %}
{% load pagination_tags %}
{% load adminmedia grp_tags %}
{% load i18n comments gstudio_tags %}
{% load i18n objectapp_tags %}
{% block content %}
{% load tagging_tags comments i18n %}
<script src="{% admin_media_prefix %}jquery/jquery-1.6.2.min.js" type="text/javascript"></script>
    <script type="text/javascript" >
      $(window).load(function() {
      $("#content").css({
    "width": "600px",});});
$(window).load(function() {
 $("#chart").hide();});
$(window).load(function() {
 
 $("#graphcss").hide();   
  });
var i = 0;
</script>
<style type="text/css">
#divpost
{
position:relative;
}
#divsearch
{
position:absolute;
margin-left:61%;
margin-top:-26%;
}
</style> 
{% if user.is_authenticated %}
{% autopaginate documents 8 %}
<h2 style="color: teal;">Document Library</h2>
<br>
<div id="divpost">
<form enctype="multipart/form-data" method="post" action="">{% csrf_token %}
<br/>
Post File:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<input type=file name="doc[]" multiple="multiple" /><br><br>
Description:&nbsp;&nbsp;<input type=textarea name="contenttext"/>
<input type="hidden" name="user" value={{user.username}}><br><br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<input type="submit" value="Post">
</form>
</div>

<div id="divsearch">
<form method="post" action="">
{% csrf_token %}
<br/>
<h4 style="color: black;">Search File</h4>
<input type="text" name="sdoc" value={{val}}>&nbsp;
<br/>
<br/>
<select name="mydropdown" style="margin:0">
<option value="title">Title</option>
<option value="creation_date">Creation Date</option>
</select>
<br/>
<br/>
<input type="submit" value="Search">
</form>
</div>
<br>
<br>
<br>
<br>
<h4 style="color: teal;">Documents Listing</h4>

{% for document in documents %}

    <div class="gbobject-content">
     <!-- {{ object_content }}-->
    </div>
<h2 style="color: green;">{{document.title}}</a></h2>
<font color = 'black'>Posted By : </font>
{% for author in document.authors.all %}
  <font color = 'teal'>{{author}}</font>
{% endfor %}
<br>
<font color = 'black'>Posted At : </font><font color = 'teal'>{{document.creation_date}}</font>
<br>
<font color = 'black'>Description:</font><font color = 'teal'>{{ document.content }}</font>
<br>
<a href="{% admin_media_prefix %}img/{{document.title}}">Download now!!</a>
<br>
{% for author in document.authors.all %}
	{% ifequal author.username user.username %} 
<form method="post" action="" onclick="return makesure();">
{% csrf_token %}
<input type="hidden" name="dn" value={{document.id}}>
<input type="submit" name="delete" value="Delete">
</form>
<script type="text/javascript">
 function makesure() {
  if (confirm('Are you sure you want to delete this file?')) {
    return true;
  }
  else {
    return false;
  }
 }
{% else %}
		<script type="text/javascript">
		function myFunction()
		{
			alert("You are not authorised to delete other users file!");
		}
		</script>
 
		<input type="button" onclick="myFunction()" value="Delete" />
	{% endifequal %}
{% endfor %}
</script>
<br>
<font color = 'black'>Current rating is </font><h4>{{ document.rating.get_rating }}</h4>
<br>
<form method="post" action="">
{% csrf_token %}
<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"/>
</br>
<input type="hidden" name="docid" value={{document.id}}>
<input type="submit" value="Rate it!!!">
</form><br>
<form method="post" action="">{% csrf_token %}
<input type="hidden" name="docid" value={{document.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 document 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>
<br/><br/>
<hr width="100%" style="height:5px;" color="black"/>
<br>
{% endfor %}<br>


{% else %}
 
<h2 style="color: indigo;">Sorry you need to log in to see this content !</h2>
 
{% endif %}
 
 <h2>
{% paginate %}</h2>





{% endblock %}

</body>