Skip to content

Releases: BananaDesk/django-phantom-pdf

Add flag make_response

29 Jan 01:04
Compare
Choose a tag to compare

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)

Release v0.2

19 Sep 15:42
Compare
Choose a tag to compare

Fixed some bugs.

Release v0.1

23 Feb 06:21
Compare
Choose a tag to compare

Initial Release.