source: src/django_gheat/samples/persisted/urls.py@ 9059

Last change on this file since 9059 was 9041, checked in by dennisw, 14 years ago

manage.py kan nu worden gerunned vanuit project root met './manage.py'
settings, models en schemes aangepast

File size: 316 bytes
Line 
1from django.conf.urls.defaults import *
2
3# Uncomment the next two lines to enable the admin:
4from django.contrib import admin
5admin.autodiscover()
6
7urlpatterns = patterns('',
8 # Example:
9 (r'^home/', include('home.urls')),
10 (r'^gheat/', include('gheat.urls')),
11 (r'^admin/', include(admin.site.urls)),
12)
Note: See TracBrowser for help on using the repository browser.