Continuing work on new bootstrap4 interface

This commit is contained in:
Garret Wassermann
2018-09-02 23:27:39 -04:00
parent b610a5f492
commit f123d78184
15 changed files with 74 additions and 23 deletions

View File

@ -37,6 +37,7 @@ def category(request, slug):
def item(request, item):
item = get_object_or_404(KBItem, pk=item)
return render(request, 'helpdesk/kb_item.html', {
'category': item.category,
'item': item,
'helpdesk_settings': helpdesk_settings,
})