Skip to content
This repository has been archived by the owner on Jan 20, 2023. It is now read-only.

Commit

Permalink
Activated admin, added south
Browse files Browse the repository at this point in the history
  • Loading branch information
idan committed Apr 10, 2011
1 parent 02891cf commit 9c5fe64
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 16 deletions.
8 changes: 4 additions & 4 deletions settings/base.py
Expand Up @@ -62,10 +62,10 @@
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
# Uncomment the next line to enable the admin:
# 'django.contrib.admin',
# Uncomment the next line to enable admin documentation:
# 'django.contrib.admindocs',
'django.contrib.admin',
'django.contrib.admindocs',

'south',
)

LOGGING = {
Expand Down
16 changes: 4 additions & 12 deletions urls.py
@@ -1,17 +1,9 @@
from django.conf.urls.defaults import patterns, include, url
from django.contrib import admin

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

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

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

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

0 comments on commit 9c5fe64

Please sign in to comment.