Skip to content

Commit

Permalink
updated for Django 1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bretth committed Aug 2, 2011
1 parent 5b329e7 commit dea1cab
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions woven/templates/distribution_template/project_name/urls.py
@@ -1,16 +1,17 @@
from django.conf.urls.defaults import *
from django.conf.urls.defaults import patterns, include, url

# Uncomment the next two lines to enable the admin:
## from django.contrib import admin
## admin.autodiscover()
# from django.contrib import admin
# admin.autodiscover()

urlpatterns = patterns('',
# Example:
# (r'^{{ project_name }}/', include('{{ project_name }}.foo.urls')),
# Examples:
# url(r'^$', '{{ project_name }}.views.home', name='home'),
# url(r'^{{ project_name }}/', include('{{ project_name }}.foo.urls')),

# Uncomment the admin/doc line below to enable admin documentation:
## (r'^admin/doc/', include('django.contrib.admindocs.urls')),
# url(r'^admin/doc/', include('django.contrib.admindocs.urls')),

# Uncomment the next line to enable the admin:
## (r'^admin/', include(admin.site.urls)),
# url(r'^admin/', include(admin.site.urls)),
)

0 comments on commit dea1cab

Please sign in to comment.