Skip to content

Commit

Permalink
docs: prevent TACC/Core-CMS-Custom#254 in future
Browse files Browse the repository at this point in the history
TACC/Core-CMS-Custom#254

Do not let that happen again.
  • Loading branch information
wesleyboar committed Nov 28, 2023
1 parent 5d26e2b commit 49c91ea
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion taccsite_cms/settings_custom.example.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,11 @@
]
# REQ: 'taggit_autosuggest' requires the following is added to `urls.py`
"""
from django.urls import re_path, include
urlpatterns += [
# Support `taggit_autosuggest` (from `djangocms-blog`)
url(r'^taggit_autosuggest/', include('taggit_autosuggest.urls')),
re_path(r'^taggit_autosuggest/', include('taggit_autosuggest.urls')),
]
"""

Expand Down

0 comments on commit 49c91ea

Please sign in to comment.