diff options
author | jayparikh111 | 2012-07-25 20:24:28 +0530 |
---|---|---|
committer | jayparikh111 | 2012-07-25 20:24:28 +0530 |
commit | 2da8081f73a42aedf0441e09ac9e41bda4133721 (patch) | |
tree | 3982d88921df79b8bba8b98aa3f6d9d26efc9d62 /stapp/templates/video/home.html | |
parent | 8a205b00cc49ae7a935889f6f19e2ffcd0cf3c2d (diff) | |
download | stproject-2da8081f73a42aedf0441e09ac9e41bda4133721.tar.gz stproject-2da8081f73a42aedf0441e09ac9e41bda4133721.tar.bz2 stproject-2da8081f73a42aedf0441e09ac9e41bda4133721.zip |
added tagging facility
Diffstat (limited to 'stapp/templates/video/home.html')
-rw-r--r-- | stapp/templates/video/home.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/stapp/templates/video/home.html b/stapp/templates/video/home.html index 3b95d4e..ab17ca1 100644 --- a/stapp/templates/video/home.html +++ b/stapp/templates/video/home.html @@ -17,6 +17,9 @@ function changeDetail(video,image,idname,iddesc) {% block onload %} {% endblock onload %} {% block video %} +{% for tag in tags %} + <a href="/tags/{{tag}}/">{{tag}}</a> +{% endfor %} <video style="border:2px solid black;" width="100%" controls="controls" id="mainvideo" poster="{{play.image.url}}" preload="none" src="{{play.filename.url}}"> </video> |