gdmty-django-scian is a Django app to get a SCIAN Catalog.
Add "polls" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ..., "cat_scian.apps.ScianConfig", ]
Include the polls URLconf in your project urls.py like this:
path("cat_scian/", include("cat_scian.urls")),
Run
python manage.py migrate
to create the models.Start the development server and visit the admin to see the tree.
Visit the
/cat_scian/
URL to participate in the poll.