Xhtml2pdf с использованием изображений не работает без ошибок

Я пытался использовать изображение для подписи в xhtml2pdf, но оно не загружается. Я не вижу ошибки в консоли html

 <img src="{{signature}}" class="signature">

python

def generate_pdf(response,property):
    BASE_DIR = path.dirname(path.dirname(path.abspath(__file__)))
    URL = "http://127.0.0.1:8000"+'/static'+property.agent.signature.url
    print(URL)
    template = get_template("main/pdftabo.html")
    context = {
        "address": f'{property.street} {property.building_number} {property.city}',
        "owners": property.owners.all(),
        "loan": property.loan,
        "plot": property.plot,
        "signature":"http://127.0.0.1:8000"+'/static'+property.agent.signature.url,
        "date":date.today(),

    }
    html = template.render(context)
    filepath = join('static',f'media/{property.block}{property.lot}.pdf') 
    write_to_file = open(filepath, "w+b")
    result = pisa.CreatePDF(html,dest=write_to_file)
    write_to_file.close()   
    with open(join('static',f'media/{property.block}{property.lot}.pdf') , 'rb') as pdf:
        response = HttpResponse(pdf.read(), content_type='application/pdf')
        #response = HttpResponse(html)
        response['Content-Disposition'] = 'inline;filename=some_file.pdf'
        return response
    pdf.closed
Вернуться на верх