Changes between Initial Version and Version 1 of Ticket #16470, comment 6
- Timestamp:
- Mar 30, 2018, 10:50:57 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #16470, comment 6
initial v1 21 21 p.showPage() 22 22 p.save() 23 return FileResponse(buffer, as_attachment=True, filename="somefilename.pdf") 23 return FileResponse( 24 buffer, as_attachment=True, filename="somefilename.pdf", content_type='application/pdf' 25 ) 24 26 }}}