Skip to content

Add flag make_response

Latest
Compare
Choose a tag to compare
@jcarizza jcarizza released this 29 Jan 01:04
· 5 commits to master since this release

Now render_to_pdf can return a HttpResponse or a string with a file path.

Will return an HttpResponse (with file attached)

response = render_to_pdf(request, 'frula')

Will return a string with a file path.

file_path = render_to_pdf(request, 'frula', make_response=False)