Django-App providing some useful things to create browsing views
see the example project in this repo to check out how to use the package and what it does
Install acdh-django-browsing:
pip install acdh-django-browsing
Add it to your INSTALLED_APPS
:
INSTALLED_APPS = (
...
'browsing',
...
)
pip install -r requirements.txt
python manage.py migrate
python manage.py loaddata data.json
python manage.py runserver
coverage run manage.py test -v 2
python -m build