Eric Lapouyade 40861400b3 black
2025-05-02 16:42:32 +02:00

18 lines
292 B
Python

# -*- coding: utf-8 -*-
"""
Created : 2024-09-23
@author: Bart Broere
"""
from docxtpl import DocxTemplate
DEST_FILE = "output/footnotes.docx"
tpl = DocxTemplate("templates/footnotes_tpl.docx")
context = {"a_jinja_variable": "A Jinja variable!"}
tpl.render(context)
tpl.save(DEST_FILE)