Added django-grappelli

This commit is contained in:
Felipe Martín 2013-05-20 14:00:23 +02:00
parent 01919b44b8
commit 19fc742050
3 changed files with 7 additions and 0 deletions

View File

@ -1,2 +1,3 @@
Django==1.5.1
jingo==0.6.1
django-grappelli==2.4.4

View File

@ -122,9 +122,14 @@ INSTALLED_APPS = (
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
'grappelli',
'django.contrib.admin',
)
# Admin
GRAPPELLI_ADMIN_TITLE = 'Minecraft Codex'
AUTOCOMPLETE_LIMIT = 10
# A sample logging configuration. The only tangible logging
# performed by this configuration is to send an email to
# the site admins on every HTTP 500 error when DEBUG=False.

View File

@ -13,5 +13,6 @@ urlpatterns = patterns('',
# url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
# Uncomment the next line to enable the admin:
(r'^grappelli/', include('grappelli.urls')),
url(r'^management/', include(admin.site.urls)),
)