summaryrefslogtreecommitdiff
path: root/stapp/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'stapp/urls.py')
-rw-r--r--stapp/urls.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/stapp/urls.py b/stapp/urls.py
index 53a1474..fa42893 100644
--- a/stapp/urls.py
+++ b/stapp/urls.py
@@ -1,5 +1,6 @@
from django.conf.urls.defaults import *
from django.conf import settings
+from django.views.generic.simple import direct_to_template
# Uncomment the next two lines to enable the admin:
from django.contrib import admin
@@ -9,6 +10,7 @@ admin.autodiscover()
urlpatterns = patterns('',
url(r'^', include('video.urls')),
+ url(r'^browser-version', direct_to_template, {'template': 'browser-version.html'}),
url(r'^admin/', include(admin.site.urls)),
)