From 7e06b69a3d1e1cdfef625bdf96f97ca5eb0eed74 Mon Sep 17 00:00:00 2001 From: Jacob Kaplan-Moss Date: Mon, 25 Aug 2008 18:53:18 +0000 Subject: Removed outdated "adminindex" command -- the same behavior is now far easier and better done in a template, or perhaps a custom `AdminSite.index` function. Refs #5500. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8548 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/management/commands/adminindex.py | 34 --------------------------- 1 file changed, 34 deletions(-) delete mode 100644 django/core/management/commands/adminindex.py (limited to 'django') diff --git a/django/core/management/commands/adminindex.py b/django/core/management/commands/adminindex.py deleted file mode 100644 index 4f389136ca..0000000000 --- a/django/core/management/commands/adminindex.py +++ /dev/null @@ -1,34 +0,0 @@ -from django.core.management.base import AppCommand -from django.utils.encoding import force_unicode -from django.utils.text import capfirst - -MODULE_TEMPLATE = ''' {%% if perms.%(app)s.%(addperm)s or perms.%(app)s.%(changeperm)s %%} - - {%% if perms.%(app)s.%(changeperm)s %%}{%% endif %%}%(name)s{%% if perms.%(app)s.%(changeperm)s %%}{%% endif %%} - {%% if perms.%(app)s.%(addperm)s %%}{%% endif %%}Add{%% if perms.%(app)s.%(addperm)s %%}{%% endif %%} - {%% if perms.%(app)s.%(changeperm)s %%}{%% endif %%}Change{%% if perms.%(app)s.%(changeperm)s %%}{%% endif %%} - - {%% endif %%}''' - -class Command(AppCommand): - help = 'Prints the admin-index template snippet for the given app name(s).' - - def handle_app(self, app, **options): - from django.db.models import get_models - output = [] - app_models = get_models(app) - app_label = app_models[0]._meta.app_label - output.append('{%% if perms.%s %%}' % app_label) - output.append('

%s

' % app_label.title()) - for model in app_models: - if model._meta.admin: - output.append(MODULE_TEMPLATE % { - 'app': app_label, - 'mod': model._meta.module_name, - 'name': force_unicode(capfirst(model._meta.verbose_name_plural)), - 'addperm': model._meta.get_add_permission(), - 'changeperm': model._meta.get_change_permission(), - }) - output.append('
') - output.append('{% endif %}') - return '\n'.join(output) -- cgit v1.3