source: django_apps/urls.py@ 301

Last change on this file since 301 was 294, checked in by Rick van der Zwet, 14 years ago

Make the references match.

File size: 727 bytes
Line 
1from django.conf.urls.defaults import patterns, include, url
2from django.contrib.staticfiles.urls import staticfiles_urlpatterns
3
4# Uncomment the next two lines to enable the admin:
5from django.contrib import admin
6admin.autodiscover()
7
8urlpatterns = patterns('',
9 # Examples:
10 # url(r'^$', 'foobar.views.home', name='home'),
11 # url(r'^foobar/', include('foobar.foo.urls')),
12 url(r'^running/', include('django_apps.running.urls')),
13
14 # Uncomment the admin/doc line below to enable admin documentation:
15 url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
16
17 # Uncomment the next line to enable the admin:
18 url(r'^admin/', include(admin.site.urls)),
19)
20
21urlpatterns += staticfiles_urlpatterns()
Note: See TracBrowser for help on using the repository browser.