Дерево в админке django-mptt-admin
Древовидное отображение записей в админке созданных через mptt
Установка и использование
Add django_mptt_admin to your installed apps in settings.py.
Use the DjangoMpttAdmin class in admin.py:
NoneAdd django_mptt_admin to your installed apps in settings.py.
INSTALLED_APPS = (
..
'django_mptt_admin',
)
Use the DjangoMpttAdmin class in admin.py:
from django.contrib import admin
from django_mptt_admin.admin import DjangoMpttAdmin
from models import Country
class CountryAdmin(DjangoMpttAdmin):
pass
admin.site.register(Country, CountryAdmin)
Официальная страница https://github.com/mbraak/django-mptt-admin
Резервная копия https://github.com/leotop/django-mptt-admin