Django-mptt-admin provides a nice Django Admin interface for Mptt models
Project description
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.4.8 and 1.5.4, and Mptt 0.6.0. Also with Python 2.6, 2.7 and 3.3.
This version is not compatible with Django 1.3. Please use django-mptt-admin 0.1.2 for Django 1.3 support.
There is experimental support for Python 3. This works with Django 1.5+ and with the development version of django-mptt.
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)
Changelog
0.1.5 (august 27 2013)
Issue 6: save the tree state
Issue 7: do not handle the right mouse click
0.1.4 (august 8 2013)
Issue 5: Support for uuid ids
0.1.3 (may 2 2013)
This version drops support for Django 1.3.7
Issue 2: Posting a screenshot in the readme would be really useful (thanks to Andy Baker)
Issue 3: Use static templatetag for CDN-compatible file paths (thanks to Alex Holmes)
Added Coveralls support
0.1.2 (march 12 2013)
Issue 1: Grid view doesn’t link correctly to object change pages (thanks to Kris Fields)
0.1.1 (februari 25 2013)
Added experimental Python 3 support
0.1 (februari 7 2013)
Initial version
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
File details
Details for the file django-mptt-admin-0.1.5.tar.gz
.
File metadata
- Download URL: django-mptt-admin-0.1.5.tar.gz
- Upload date:
- Size: 58.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a44cfb63b936d3f76fea1f3e5fab1864e8ad618ace58b4720d54e8954b89a4cc |
|
MD5 | e362f779b5bc480faeb19868f2b4d36c |
|
BLAKE2b-256 | ce4ac6e895ab960f7f699d7b93fa484af45c4261d95bdc087dd5f9ae993adbfe |