From 527ab688a8608ded5fc854cf8641228181efa981 Mon Sep 17 00:00:00 2001 From: Ankita Date: Fri, 13 Jul 2012 12:31:27 +0530 Subject: this patch was added for metastudio by BITS Pilani team in 2012. --- gstudio/templates/gstudio/video.html | 184 +++++++++++++++++++++++++++++++++++ 1 file changed, 184 insertions(+) create mode 100644 gstudio/templates/gstudio/video.html (limited to 'gstudio/templates/gstudio/video.html') diff --git a/gstudio/templates/gstudio/video.html b/gstudio/templates/gstudio/video.html new file mode 100644 index 0000000..644831a --- /dev/null +++ b/gstudio/templates/gstudio/video.html @@ -0,0 +1,184 @@ +{% extends "gstudio/base.html" %} +{% load i18n %} +{% load adminmedia grp_tags %} +{% block content %} +{% if user.is_authenticated %} +

Welcome to the VideoCore

+

{{ image.title }}

+

Logged in as: {{user.username}}

+
+
+{% csrf_token %} +

Post Video:

+ + +
+
+
+{% csrf_token %} +

Search Video

+

+

Sort videos by:

+

+ +
+ + +
+
+
+{% csrf_token %} + + +
+ +

VIDEOS


+ + + + + + + +
+ + + + + + + +
+{% if fav %} +

Favourite Videos

+{% endif %} +
+ +{% for video in vids %} + +

{{video.title}}

+
+{% csrf_token %} + + +
+

Right click to download


+Posted By : +{% for author in video.get_nbh.posted_by %} + {{author}} +{% endfor %} +
+Posted At : +{% for date in video.get_nbh.creation_day %} + {{date}} +{% endfor %} +
+{% for we in video.get_nbh.source %} + Location: + {% for map in video.get_nbh.map_link %} + {% ifnotequal map '' %} + {{we}} + {% endifnotequal %} + {% endfor %} + {% endfor %} +
+Current rating is

{{ video.rating.get_rating }}

+
+
+{% csrf_token %} + + + + + + + + +
+
+
+{% csrf_token %} + + + +

+
+
+{% endfor %}
+ +

+Follow us on Facebook +{% else %} + +

Sorry you need to log in to see this content !

+ +{% endif %} +{% endblock %} + +{% block chart %} +













+ +




+ +
+{% endblock %} + + + -- cgit v1.1