Browse Source

corrected whitespace

Natenom/support-murmur-13-1446181288462
Michael Ziegler 15 years ago
parent
commit
cea8c2c07b
  1. 18
      pyweb/urls.py

18
pyweb/urls.py

@ -8,20 +8,18 @@ from django.conf import settings
urlpatterns = patterns('',
(r'^/?$', 'django.views.generic.simple.redirect_to', { 'url': '/mumble/' } ),
# Example:
# (r'^mumble_django/', include('mumble_django.foo.urls')),
# Uncomment the admin/doc line below and add 'django.contrib.admindocs'
# to INSTALLED_APPS to enable admin documentation:
# (r'^admin/doc/', include('django.contrib.admindocs.urls')),
# Uncomment the admin/doc line below and add 'django.contrib.admindocs'
# to INSTALLED_APPS to enable admin documentation:
# (r'^admin/doc/', include('django.contrib.admindocs.urls')),
(r'^accounts/profile/', 'views.profile' ),
(r'^accounts/', include('registration.urls')),
(r'^accounts/profile/', 'views.profile' ),
(r'^accounts/', include('registration.urls')),
(r'^mumble/', include('mumble.urls')),
(r'^mumble/', include('mumble.urls')),
# Uncomment the next line to enable the admin:
(r'^admin/(.*)', admin.site.root),
# Uncomment the next line to enable the admin:
(r'^admin/(.*)', admin.site.root),
)
# Development stuff

Loading…
Cancel
Save