Skip to main content

A django app with an abstract model which helps to define tree style categories with unlimited sub levels

Project description

========
CategoryTree
========

This is a simple Django apllication that provide an abstract class to create a tree style category model.
Using this model we can define unlimited number of sublevel categories only by one model class.


Installation
============
Install the application package using pip::

pip install django-categorytree



add 'categorytree' to the INSTALLED_APPS list on your settings file

How to use
==========

Import the Category abstract model from categorytree and use it to create your category model::

from lcategorytree.models import Category

class MyCategoryModel(Category):
pass


In your application admin.py file mport the CategoryAdmin abstract ModelAdmin class and use it to register your model to the admin site::

from categorytree.admin import CategoryAdmin


class MyCategoryAdmin(CategoryAdmin):

class Meta:
model = MyCategoryModel

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_categorytree-0.1.tar.gz (2.6 kB view hashes)

Uploaded Source

Built Distributions

django_categorytree-0.1.2.tar.gz (2.6 kB view hashes)

Uploaded Source

django_categorytree-0.1.1.tar.gz (2.5 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page