Removing admin_tools

master
Nick Sergeant 2011-06-02 01:08:41 -04:00
parent f4d828fa39
commit 452990ccc4
4 changed files with 1 additions and 8 deletions

View File

@ -6,10 +6,7 @@
-e git://github.com/alex/django-templatetag-sugar.git#egg=templatetag_sugar
-e hg+http://bitbucket.org/dwaiter/django-bcrypt#egg=django-bcrypt
-e hg+ssh://hg@bitbucket.org/nicksergeant/django-registration#egg=django-registration
# Admin
-e svn+http://django-grappelli.googlecode.com/svn/trunk#egg=django-grappelli
-e hg+http://bitbucket.org/fetzig/grappelli-admin-tools#egg=admin_tools
# Deployment
-e git://github.com/bitprophet/fabric.git#egg=fabric

View File

@ -32,7 +32,6 @@ TEMPLATE_CONTEXT_PROCESSORS = (
'django.core.context_processors.i18n',
'django.core.context_processors.media',
'django.core.context_processors.request',
'grappelli.context_processors.admin_template_path',
)
TEMPLATE_LOADERS = (
'django.template.loaders.filesystem.load_template_source',
@ -53,8 +52,6 @@ TEMPLATE_DIRS = os.path.join(BASE_PATH, 'templates')
INSTALLED_APPS = (
'grappelli',
'admin_tools.theming',
'admin_tools.menu',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',

View File

@ -1,3 +1,3 @@
#!/bin/bash
ln -s "$VIRTUAL_ENV/src/django-grappelli/grappelli/media" "media/admin"
ln -s "$VIRTUAL_ENV/src/django-grappelli/grappelli/static/grappelli" "media/admin"

View File

@ -9,7 +9,6 @@ from views import home
urlpatterns = patterns('',
url(r'^admin/', include(admin.site.urls)),
url(r'^admin_tools/', include('admin_tools.urls')),
url(r'^grappelli/', include('grappelli.urls')),
url(r'^404/$', direct_to_template, {'template': '404.html'}),