1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-18 05:49:11 +00:00
trezor-firmware/tools/towncrier.template.md

15 lines
465 B
Markdown
Raw Normal View History

{% for section, _ in sections.items() %}
{% if section %}{{section}}{% endif -%}
{% if sections[section] %}
{% for category, val in definitions.items() if category in sections[section] %}
### {{ definitions[category]['name'] }}
{% if definitions[category]['showcontent'] %}
{% for text, values in sections[section][category].items() %}
2023-06-13 14:18:47 +00:00
- {{ text }}{% if values %} {{ values|join(', ') }}{% endif +%}
{% endfor %}
2023-06-13 14:18:47 +00:00
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}