Transmogrifying - sequence five initiated.

This commit is contained in:
=
2012-09-07 22:39:29 +01:00
parent 9bf496b8cf
commit 25ca29d2b8

View File

@@ -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')),