diff --git a/dpaste/templates/dpaste/base.html b/dpaste/templates/dpaste/base.html index 8f494fc..39250db 100644 --- a/dpaste/templates/dpaste/base.html +++ b/dpaste/templates/dpaste/base.html @@ -16,7 +16,7 @@
diff --git a/dpaste/urls/__init__.py b/dpaste/urls/__init__.py index 1f0b4ae..0a324a4 100644 --- a/dpaste/urls/__init__.py +++ b/dpaste/urls/__init__.py @@ -2,7 +2,6 @@ from django.conf.urls import url, patterns, include urlpatterns = patterns( '', - url(r'^about/$', 'dpaste.views.about', name='about'), url(r'^', include('dpaste.urls.dpaste_api')), url(r'^', include('dpaste.urls.dpaste')), ) diff --git a/dpaste/urls/dpaste.py b/dpaste/urls/dpaste.py index df222c9..32182b8 100644 --- a/dpaste/urls/dpaste.py +++ b/dpaste/urls/dpaste.py @@ -1,6 +1,8 @@ from django.conf.urls import url, patterns urlpatterns = patterns('dpaste.views', + url(r'^about/$', 'about', name='dpaste_about'), + url(r'^$', 'snippet_new', name='snippet_new'), url(r'^diff/$', 'snippet_diff', name='snippet_diff'), url(r'^history/$', 'snippet_history', name='snippet_history'),