def doc_section(request, part, chapter, section, ajax=''): section = documentation.get_section(part, chapter, section) if not section: raise Http404 data = section.html_data() return render_doc(request, 'section.html', { 'title': section.get_title_html(), 'title_operator': section.operator, 'section': section, 'object': section, }, data=data, ajax=ajax)
def doc_section(request, part, chapter, section, ajax=""): section = documentation.get_section(part, chapter, section) if not section: raise Http404 data = section.html_data() return render_doc( request, "section.html", { "title": section.get_title_html(), "title_operator": section.operator, "section": section, "object": section, }, data=data, ajax=ajax, )