django-wkhtmltopdf icon indicating copy to clipboard operation
django-wkhtmltopdf copied to clipboard

Django Wrapper to the PDF Renderer: wkhtmltopdf

Results 42 django-wkhtmltopdf issues
Sort by recently updated
recently updated
newest added

how to subclass PDFTemplateView to add another subprocess call and pipe the ouput of wkhtmltopdf to pdftk (```pdftk - background background.pdf output -```) ?

If Django is in DEBUG mode it will not work because often settings.STATIC_ROOT is not defined in development mode. I propose to make changes in utils.py line 236 from 'root':...

I am going to render d3 charts into PDF but it doesn't work. Actually, I've tested that javascript is running for PDF export, but it doesn't support async callback. I've...

My use case involved rendering lots of templates with user-uploaded images so bombing on a 404 was a deal breaker. Investigated other options, but wkhtmltopdf seemed like the best fit...

Currently, when generating a pdf from a html file, I have to prepend `{{ request.scheme }}://{{ request.get_host }} ` inside of my html, so that wkhtmltopdf will be able to...

Is there any way to use this library together with other class-based views like using a hypothetical class called `PDFRenderMixin` ``` python class FooDetailView(PDFRenderMixin, generic.DetailView): model = Foo template_name =...

Hi, Im working on incorporating wkhtmltopdf into our django application and am using django-wkhtmltopdf. Ive gotten just about everything to work, but got stuck on background images. They show up...

This PR adds support for including a Table of Contents as the first page of a PDF, addressing #12 and possibly #91. Please note it's a pretty major change to...

Please see connected issue: https://github.com/incuna/django-wkhtmltopdf/issues/67 which stumbles across this issue. I have an html document that contains an image url that 404's. WKHTMLTOPDF will return exit code 1 however looking...