mirror of
https://github.com/fergalmoran/dss.git
synced 2026-01-08 18:06:10 +00:00
Transmogrifying - sequence five initiated.
This commit is contained in:
@@ -14,10 +14,10 @@ urlpatterns = patterns('',
|
||||
(r'^favicon\.ico$', 'django.views.generic.simple.redirect_to', {'url': '/static/img/favicon.ico'}),
|
||||
(r'^channel\.html$', 'django.views.generic.simple.redirect_to', {'url': '/static/html/fb_channel.html'}),
|
||||
(r'^privacy\.html$', 'django.views.generic.simple.redirect_to', {'url': '/static/html/privacy.html'}),
|
||||
(r'^robots\.txt$', 'django.views.defaults.server_error'),
|
||||
(r'^robots\.txt$', lambda r: HttpResponse("User-agent: *\nDisallow: /", mimetype="text/plain")),
|
||||
(r'^tos\.html$', 'django.views.generic.simple.redirect_to', {'url': '/static/html/tos.html'}),
|
||||
(r'^test\.html$', 'django.views.generic.simple.redirect_to', {'url': '/static/html/test.html'}),
|
||||
(r'^500', lambda r: HttpResponse("User-agent: *\nDisallow: /", mimetype="text/plain")),
|
||||
(r'^500', 'django.views.defaults.server_error'),
|
||||
url(r'^', include('spa.urls')),
|
||||
(r'^grappelli/', include('grappelli.urls')),
|
||||
url(r'^accounts/', include('allauth.urls')),
|
||||
|
||||
Reference in New Issue
Block a user