Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 807 Bytes

README.md

File metadata and controls

43 lines (28 loc) · 807 Bytes

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