Django-mptt-admin provides a nice Django Admin interface for Mptt models
Project description
Django Mptt Admin
Django-mptt-admin provides a nice Django Admin interface for Mptt models. The source is available on https://github.com/leukeleu/django-mptt-admin. It uses the jqTree library.
Requirements
The package is tested with Django 1.3.7, 1.4.5 and 1.5.1, and Mptt 0.5.5. Also with Python 2.6 and 2.7.
Installation
Install the package:
$ pip install django_mptt_admin
Add 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)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-mptt-admin-0.1.2.tar.gz
(55.1 kB
view details)
File details
Details for the file django-mptt-admin-0.1.2.tar.gz
.
File metadata
- Download URL: django-mptt-admin-0.1.2.tar.gz
- Upload date:
- Size: 55.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 88070ce0cdeaa0a51a497f06a7fe8ef9c6ee73a4baf155a91b29144105e80bdd |
|
MD5 | 10a18ea071bee6bcc7dd12bc27b8d274 |
|
BLAKE2b-256 | dbf20056cd4485d2faa0ca058ce09624119a4ecf3e7299746da03fd38b2e581a |