Add iframe view of KB categories

This commit is contained in:
Timothy Hobbs
2020-01-08 19:36:48 +01:00
parent 6579ac0e6f
commit 6a8ebd56a0
8 changed files with 108 additions and 112 deletions

View File

@ -239,6 +239,10 @@ if helpdesk_settings.HELPDESK_KB_ENABLED:
url(r'^kb/(?P<slug>[A-Za-z0-9_-]+)/$',
kb.category,
name='kb_category'),
url(r'^kb_iframe/(?P<slug>[A-Za-z0-9_-]+)/$',
kb.category_iframe,
name='kb_category_iframe'),
]
urlpatterns += [