Skip to content

xionxiao/django-simple-category

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PyPI version

Django Simple Category

A simple django category libaray

This simple libaray provide an abstract Category class for django whitch does not need MPTT support.

Feature overview

  • Abstract Category class

Install

pip install django-simple-category

Usage

  1. Add "simple-category" to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
        'category',
    ]
  2. Inherit from the Category class like this:

    from simple_category.models import Category
    
    class MyCategory(Category):
        pass
  3. Run migrations to create your category models.

    python manage.py makemigrations
    python manage.py migrate

About

A simple and extendable hierarchical category app for django.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages