Getting started

Requirements

Installing

Install django-precise-bbcode using:

pip install django-precise-bbcode

Add precise_bbcode to INSTALLED_APPS in your project’s settings module:

INSTALLED_APPS = (
    # other apps
    'precise_bbcode',
)

Then install the models:

python manage.py migrate