mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-10-31 20:39:48 +00:00
17 lines
520 B
Markdown
17 lines
520 B
Markdown
|
|
## [{{ versiondata.version }}] ({{versiondata.date}})
|
|
{% 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() %}
|
|
- {{ text }} {{ values|reject("eq", "[#noissue]")|join(', ') }}
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endfor %}
|