summaryrefslogtreecommitdiff
path: root/gstudio/templates/gstudio/video.html
blob: f2ae11da778fa45887353c57bccc79e869a73815 (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
{% extends "gstudio/base.html" %}
{% load pagination_tags %}
{% load i18n %}
{% load adminmedia grp_tags %}
{% load i18n comments gstudio_tags %}

{% block content %}
<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">
#div2
{
background-color:#E8E8E8 ;
}
#div1
{
background-color:white
}
#divpost
{
position:relative;
}
#divsearch
{
position:absolute;
margin-left:61%;
margin-top:-23%;
}
</style>

{% if user.is_authenticated %}

{% autopaginate vids 10 %}


<h2 style="color: teal;">Video Library</h2>
<br/>
<div id="divpost">
<form enctype="multipart/form-data" method="post" action="">
{% csrf_token %}
<p><h4 style="color: black;">Submit Videos:</h4>Video:&nbsp;<input type="file" name="clip" multiple="multiple" /></p><br/>
Description:&nbsp;&nbsp;<input type=textarea name="contenttext"/>
<input type="hidden" name="user" value={{user.username}}>
<input type="hidden" name="userpassword" value={{user.password}}>
<input type="hidden" name="useremail" value={{user.email}}>
<br/><br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<input type="submit" value="Upload" onclick="return myupload();" >
<input type="hidden" name="upload" id = "uploadid">
<script type="text/javascript">
function myupload()
{

var prompta = prompt("Enter your password")
document.getElementById("uploadid").setAttribute("value",prompta);
}
</script>

</form>
</div>
<div id="divsearch">
<form method="post" action="">
{% csrf_token %}
<h4 style="color: black;">Search Videos:</h4>
<p><input type="text" name="svid" value={{val}}></p>


<select name="mydropdown">
<option value="title">Title</option>
<option value="creation_date">Creation Date</option>
</select>

<input type="submit" name="norm" value="Search">
<input type="submit" name="spe" value="Search by User">
</form>
<br>
<form method="post" action="/gstudio/resources/videos/">
{% csrf_token %}
<input type="hidden" name="user" value={{user.username}}>
<input type="submit" name="fav" value="View Favourites">
</form>
</div>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
{% if fav %}
<h2 style="color: teal;">Favourite Videos</h2><br/>
{% else %}
<h2 style="color: teal;">List of Videos in the library </h2><br/>
{% endif %}


{% for video in vids %}
<!--<iframe src="{{video.rurl}}/embed?in=0&out=10000&view=video" width="256" height="144" allowfullscreen></iframe>-->


<div id="divvideo">
<script type="text/javascript">
i = i+1;
if (i%2 == 0){
document.getElementById("divvideo").setAttribute("id","div1");
}
else
{
document.getElementById("divvideo").setAttribute("id","div2");
}

</script>
<font size="4">{{video.title}}</font>
<form enctype="multipart/form-data" method="post" action="" target="_blank">
{% csrf_token %}
<input type="hidden" name = "full" value ={{video.slug}}>
<input type="submit" value="Play">
	
<a href={{video.rurl}} target="_blank">Right click to download</a><br>
<!-- <font color = 'black'>Posted By : </font> -->
{% for author in video.get_nbh.posted_by %}

  <input type="hidden" name="authorname" value="{{ author }}"  />
{% endfor %}

<!-- <br> -->
<!-- <font color = 'black'>Posted At :</font> -->
{% for date in video.get_nbh.creation_day %}
 <input type="hidden" name="datename" value="{{ date }}"  />
{% endfor %}
 <input type="hidden" name="titlename" value="{{ video.title }}"  />

<!-- <br> -->
{% for we in video.get_nbh.source %}
		<!-- <font color = 'black'>Location: </font>  -->
			{% for map in video.get_nbh.map_link %}
				{% ifnotequal map '' %}
		                    <input type="hidden" name="mapname" value="{{ map }}"  />
				     <input type="hidden" name="wename" value="{{ we }}"  />
					<!-- <a href=http://maps.google.co.in/maps?hl=en&cp=43&gs_id=6&xhr=t&q={{map}}&bav=on.2,or.r_gc.r_pw.r_qf.,cf.osb&biw=1304&bih=680&um=1&ie=UTF-8&sa=N&tab=wl target="_blank">{{we}}</a> -->
				{% endifnotequal %}
			{% endfor %}
		{% endfor %}
<!-- <br> -->
 <input type="hidden" name="contentname" value="{{ video.content }}" />
 <input type="hidden" name="ratename" value="{{ video.rating.get_rating }}" />

<!-- <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"/> -->
  
<input type="hidden" name="vidid" value={{video.id}}>
</form>
<!-- <input type="submit" value="Rate it!!!"> -->
<!-- </form> -->
<!-- <br> -->
<!-- <form method="post" action=""> -->
<!-- {% csrf_token %} -->
<!-- <input type="hidden" name="favid" value={{video.id}}> -->
<!-- <input type="hidden" name="favusr" value={{user.username}}> -->
<!-- <input type="submit" value="Add to favourites"> -->
<!-- </form><br> -->
<!-- <hr width="100%" style="height:5px;" color="black"/> -->
<!-- <br> -->
</div>

{% endfor %}


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

{% endblock %}

{% block chart %}
<br> 

<br>
{% endblock %}