remove remainders of djangocms-bootstrap5
this is a follow-up on !176 (merged) and finishes the migration from djangocms-bootstrap5 to djangocms-frontend. Note that this is a breaking change! You first need to do the migration from !176 (merged) and the run implement the changes from this MR. Otherwise you may encounter data loss.
To run the migration,
-
add the following to your
settings.py
DJANGOCMS_FRONTEND_ADDITIONAL_MIGRATIONS = [ "academic_community.management.bootstrap5_migration" ]
-
remove
django.contrib.auth
anddjango.contrib.admin
from theINSTALLED_APPS
in settings (they are now added viaacademic_community.INSTALLED_APPS
) -
run
python manage.py migrate
andpython manage.py frontend migrate
afterwards you can continue with the changes introduced in this MR
Edited by Philipp S. Sommer