diff --git a/README.rst b/README.rst index cdad26d..9a15619 100644 --- a/README.rst +++ b/README.rst @@ -10,7 +10,7 @@ Python: 3.7, 3.8, 3.9, 3.10 Django: 2.2, 3.2 -django CMS: 3.7 - 3.11 +django CMS: 3.7 - 3.10 ********** Quickstart @@ -22,20 +22,15 @@ Install djangocms-page-tags:: Then add it to INSTALLED_APPS along with its dependencies:: - 'taggit', - 'taggit_autosuggest', - 'djangocms_page_tags', + "taggit", + "taggit_autosuggest", + "djangocms_page_tags", Add ``taggit_autosuggest`` to urlconf:: - url(r'^taggit_autosuggest/', include('taggit_autosuggest.urls')), + path("taggit_autosuggest", include("taggit_autosuggest.urls")), - -Execute migration or syncdb:: - - $ python manage.py syncdb - -or:: +Execute migration:: $ python manage.py migrate diff --git a/docs/installation.rst b/docs/installation.rst index 54170f8..5db2d01 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -12,20 +12,15 @@ Installation #. Then add it to INSTALLED_APPS along with its dependencies:: - 'taggit', - 'taggit_autosuggest', - 'djangocms_page_tags', + "taggit", + "taggit_autosuggest", + "djangocms_page_tags", #. Add `taggit_autosuggest` to urlconf:: - url(r'^taggit_autosuggest/', include('taggit_autosuggest.urls')), + path("taggit_autosuggest", include("taggit_autosuggest.urls")), - -#. Synchronize the database with syncdb:: - - $ python manage.py syncdb - - or migrate:: +#. Synchronize the database with migrate:: $ python manage.py migrate