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
RevLine 
[9006]1from django.conf.urls.defaults import *
[9113]2from django.contrib.staticfiles.urls import staticfiles_urlpatterns
[9006]3
4# Uncomment the next two lines to enable the admin:
[9041]5from django.contrib import admin
6admin.autodiscover()
[9006]7
8urlpatterns = patterns('',
9 # Example:
10 (r'^home/', include('home.urls')),
11 (r'^gheat/', include('gheat.urls')),
[9041]12 (r'^admin/', include(admin.site.urls)),
[9006]13)
[9113]14urlpatterns += staticfiles_urlpatterns()
15
Note: See TracBrowser for help on using the repository browser.