3
0
Fork 0
mirror of https://github.com/nanoy42/coope synced 2024-05-03 16:12:22 +00:00
coope/django_tex/views.py
2019-01-06 15:57:02 +01:00

18 lines
630 B
Python

from django.http import HttpResponse
from django_tex.core import compile_template_to_pdf
class PDFResponse(HttpResponse):
def __init__(self, content, filename=None):
super(PDFResponse, self).__init__(content_type='application/pdf')
self['Content-Disposition'] = 'filename="{}"'.format(filename)
self.write(content)
def render_to_pdf(request, template_name, context=None, filename=None):
# Request is not needed and only included to make the signature conform to django's render function
pdf = compile_template_to_pdf(template_name, context)
return PDFResponse(pdf, filename=filename)