diff options
author | Jay Parikh | 2012-07-20 17:39:45 +0530 |
---|---|---|
committer | Jay Parikh | 2012-07-20 17:39:45 +0530 |
commit | d58c61ecdbd099cc8fed205ebda535946c0f310a (patch) | |
tree | b2a0b05de929417caa49f04726d77936bbb282dc /stapp/templates | |
parent | 59640d9760e7950454df403c1d2b74eb4352cd8d (diff) | |
parent | f6a6cd06373780933d28321023b05d12ea2824b8 (diff) | |
download | stproject-d58c61ecdbd099cc8fed205ebda535946c0f310a.tar.gz stproject-d58c61ecdbd099cc8fed205ebda535946c0f310a.tar.bz2 stproject-d58c61ecdbd099cc8fed205ebda535946c0f310a.zip |
Merge branch 'master' of http://github.com/FOSSEE/stproject
Diffstat (limited to 'stapp/templates')
-rw-r--r-- | stapp/templates/base.html | 4 | ||||
-rw-r--r-- | stapp/templates/video/home.html | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/stapp/templates/base.html b/stapp/templates/base.html index c151a5c..1f70617 100644 --- a/stapp/templates/base.html +++ b/stapp/templates/base.html @@ -21,8 +21,8 @@ padding-bottom: 40px; padding: 9px 0; } </style> - <link rel="stylesheet" href="{{ URL_BASE }}/static/video/css/base.css" type="text/css" /> - <link rel="stylesheet" href="{{ URL_BASE }}/static/video/css/style.css" type="text/css" /> + <link rel="stylesheet" href="{{ STATIC_URL }}video/css/base.css" type="text/css" /> + <link rel="stylesheet" href="{{ STATIC_URL }}video/css/style.css" type="text/css" /> {% block css %} {% endblock %} diff --git a/stapp/templates/video/home.html b/stapp/templates/video/home.html index 75ec528..3269d01 100644 --- a/stapp/templates/video/home.html +++ b/stapp/templates/video/home.html @@ -21,7 +21,7 @@ function myfunction(video,image) {% block onload %} {% endblock onload %} {% block video %} - <video width="640" height="480" controls="controls" id="mainvideo" poster="{{play.image.url}}" preload="none" src="{{play.filename.url}}"> + <video width="100%" controls="controls" id="mainvideo" poster="{{play.image.url}}" preload="none" src="{{play.filename.url}}"> </video> {% endblock%} |