Merge pull request #26 from AndrewIngram/master

Make example project import admin2 urls
This commit is contained in:
Daniel Greenfeld 2013-05-18 03:28:54 -07:00
commit c6bdd24f79
2 changed files with 2 additions and 1 deletions

View file

@ -119,6 +119,7 @@ INSTALLED_APPS = (
# 'django.contrib.admin',
# Uncomment the next line to enable admin documentation:
# 'django.contrib.admindocs',
'djadmin2',
'blog',
)

View file

@ -6,7 +6,7 @@ from django.conf.urls import patterns, include, url
urlpatterns = patterns('',
# Examples:
# url(r'^$', 'example.views.home', name='home'),
url(r'^$', include('djadmin2.urls')),
# url(r'^example/', include('example.foo.urls')),
# Uncomment the admin/doc line below to enable admin documentation: