mirror of
https://github.com/hay-kot/mealie.git
synced 2025-07-15 01:23:57 -07:00
7 lines
132 B
Django/Jinja
7 lines
132 B
Django/Jinja
from pathlib import Path
|
|
|
|
CWD = Path(__file__).parent
|
|
|
|
{% for f in data.children %}
|
|
{{ f.var }} = CWD / "{{ f.path }}"
|
|
{% endfor %}
|