Pluggable app for taxonomies, content collections, and navigation.
Project description
Boilerplate for taxonomies, content collections, and content models using django-mptt and django-taggit.
Features
Drag and drop construction of taxonomies.
Arbitrary relationships among groups, taxonomies, collections, content, and attachments.
Templates for displaying taxonomies with and without collections’ contents.
Documentation
dj-content model is just boilerplate for django-mptt and django-taggit. It defines a hierarchical structure with arbitrary relationships via collections. The Quickstart example is a sufficient starting point for many projects. Each abstract class provided by dj-contentmodel is a descendant of django.db.models, so extend them as you would a Django model. The Group and Taxonomy classes are also descendants of django-mptt’s MPTTModel class and can be extended accordingly. Additional examples dj-contentmodel’s abstract classes are available at https://dj-contentmodel.readthedocs.org.
Quickstart
First, install dj-contentmodel:
pip install dj-contentmodel
Then, import the abstract base classes.:
from dj_contentmodel.models import Taxonomy, Collection, Content, Attachment
Next, subclass the imported classes to create taxonomies and content models as needed. The following example is of a minimum configuration. The names of defined classes are arbitrary, but the relationships among classes are not.
class Sitemap(Taxonomy): """Main navigation""" collections = models.ManyToManyField('Bucket', blank=True) class Meta: verbose_name = "Category" verbose_name_plural = "Categories" ... class Bucket(Collection): """Arbitrary collections to group content.""" contents = models.ManyToManyField('Page', blank=True) ... class Page(Content): ... class Report(Attachment): parents = models.ManyToManyField('Page', blank=True) ...
Finally, register your models with the admin.
from django.contrib import admin from mptt.admin import DraggableMPTTAdmin admin.site.register( Sitemap, DraggableMPTTAdmin, list_display=( 'tree_actions', 'indented_title',), list_display_links=( 'indented_title',),) admin.site.register(Bucket) admin.site.register(Page) admin.site.register(Report)
Without a migration, it may be necessary to create the tables.:
python manage.py migrate --run-syncdb
Running Tests
Does the code actually work? For now I have my fingers crossed. Later iterations will be test driven and include integration and performance testing.
source <YOURVIRTUALENV>/bin/activate (myenv) $ pip install -r requirements_test.txt (myenv) $ python runtests.py
Credits
Tools used in rendering this package:
History
0.1.0 (2016-06-07)
First release on PyPI.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file dj-contentmodel-0.1.7.tar.gz
.
File metadata
- Download URL: dj-contentmodel-0.1.7.tar.gz
- Upload date:
- Size: 6.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f4665c9e58e822f57a89653393d7ae7590db5cd7c535e50d8661721673611d6b |
|
MD5 | 438181b368d056227ade9a4f6223a626 |
|
BLAKE2b-256 | 668d9f2f5e3c9b46671a251e39a45a06e22f95985c7900232a1e3e3ccf14b50d |
File details
Details for the file dj_contentmodel-0.1.7-py2.py3-none-any.whl
.
File metadata
- Download URL: dj_contentmodel-0.1.7-py2.py3-none-any.whl
- Upload date:
- Size: 7.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f54d55a26c8deadd03483d7f23db5969842ebddf2fd604ac91397d7d314f0a5b |
|
MD5 | 3453ce43c8f158b4cd353d7561f244b2 |
|
BLAKE2b-256 | 76101a844c08dfafb05f7cc915d04c19d86694f7a52c3027924aff9cf6825907 |