diff options
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%} |