mirror of
https://github.com/long2ice/fastapi-cache.git
synced 2026-03-25 13:07:53 +00:00
This PR includes a workflow that validates that future PRs include a changelog entry (unless the `skip-changelog` label is present on the PR, or the PR is a dependabot PR). Use 'poetry run towncrier create` to create entries for the changelog.
16 lines
314 B
Django/Jinja
16 lines
314 B
Django/Jinja
{% 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 -%}
|