mirror of
https://github.com/long2ice/fastapi-cache.git
synced 2026-03-25 13:07:53 +00:00
16 lines
314 B
Plaintext
16 lines
314 B
Plaintext
|
|
{% if sections[""] -%}
|
||
|
|
{% for category, val in definitions.items() if category in sections[""] -%}
|
||
|
|
|
||
|
|
### {{ definitions[category]['name'] }}
|
||
|
|
|
||
|
|
{% for text, values in sections[""][category].items() %}
|
||
|
|
- {{ text }} {{ values|join(', ') }}
|
||
|
|
{% endfor %}
|
||
|
|
|
||
|
|
{% endfor -%}
|
||
|
|
{% else -%}
|
||
|
|
No significant changes.
|
||
|
|
|
||
|
|
|
||
|
|
{% endif -%}
|