diff --git a/standards/templatetags/__pycache__/counter_tag.cpython-38.pyc b/standards/templatetags/__pycache__/counter_tag.cpython-38.pyc index 6b83b87..d746e9a 100644 Binary files a/standards/templatetags/__pycache__/counter_tag.cpython-38.pyc and b/standards/templatetags/__pycache__/counter_tag.cpython-38.pyc differ diff --git a/standards/views.py b/standards/views.py index 29fe816..06edd3a 100644 --- a/standards/views.py +++ b/standards/views.py @@ -873,7 +873,7 @@ def getStandardPDF(request, pk): userisingroup = True if userisingroup: - pdf = convert_html_to_pdf(standard.content, "final.pdf") + pdf = convert_html_to_pdf("

" + standard.name + "


" + standard.content, "final.pdf") return HttpResponse(pdf, content_type='application/pdf') else: messages.warning(request, f'Diesen Standard dürfen Sie nicht sehen!')