django-easy-pdf icon indicating copy to clipboard operation
django-easy-pdf copied to clipboard

PDF views, the easy way

Results 47 django-easy-pdf issues
Sort by recently updated
recently updated
newest added

how to show persian and arabic text in pdf?

I have an issue, I can't render images on pdf.

@nigma @msaizar @metakermit are you guys interested in supporting this project? Many people are waiting for a new version supporting django 3.0. I may be interested to give continuity to...

There are references to `django.utils.six`, which has been dropped in favour of `six`.

class ViewCart(TemplateView): template_name = 'cart/view_cart.html' def get_context_data(self,request,**kwargs): context = super().get_context_data(request,**kwargs) try: the_id = request.session['cart_id'] except: the_id = None if the_id: cart = Cart.objects.get(id = the_id) context['cart'] = cart context['empty'] =...

Hello, I have been using easy_pdf to render pdfs from an html template. But I have not been able to wrap long words. It works fine with line wrapping. But...

Added Django 3 support. remove from django.utils.six import BytesIO because of Django 3 remove it. added import os.

Dear Developer, My environment : * MacOS Mojave * Python 3.8.2 I have found issue about this error when I was tried to import PDFTemplateView and PDFTemplateResponseMixin. `from django.utils.six import...