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

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

Supports OpenLayers/OpenStreetMap instead of Google Maps.

File size: 426 bytes
Line 
1from django.conf.urls.defaults import *
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 # Example:
10 (r'^home/', include('home.urls')),
11 (r'^gheat/', include('gheat.urls')),
12 (r'^admin/', include(admin.site.urls)),
13)
14urlpatterns += staticfiles_urlpatterns()
15
Note: See TracBrowser for help on using the repository browser.