You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 15, 2019. It is now read-only.
the setting KNOWLEDGE_SLUG_URLS = True causes that the url pattern: r'^questions/(?P<category_slug>[a-z0-9-_]+)/$' caches the the requests to view a question and maps to knowledge_list view
instead of r'^questions/(?P<question_id>\d+)/$' who matches to knowledge_thread_no_slug view
the setting
KNOWLEDGE_SLUG_URLS = Truecauses that the url pattern:r'^questions/(?P<category_slug>[a-z0-9-_]+)/$'caches the the requests to view a question and maps toknowledge_listviewinstead of
r'^questions/(?P<question_id>\d+)/$'who matches toknowledge_thread_no_slugview