17 lines
505 B
Django/Jinja
17 lines
505 B
Django/Jinja
{#- Macros for simplifying creating "Event" documentation. -#}
|
|
{% import 'stability.j2' as stability %}
|
|
{% import 'body_field_table.j2' as body_table %}
|
|
{% macro header(event) %}**Status:** {{ stability.badge(event.stability, event.deprecated) }}
|
|
|
|
The event name MUST be `{{ event.name }}`.
|
|
|
|
{{ event.brief | trim }}
|
|
{%if event.note %}
|
|
{{ event.note | trim }}
|
|
{% endif %}
|
|
{% endmacro %}
|
|
{% macro body(body) %}{% if body %}**Body fields:**
|
|
|
|
{{ body_table.generate(body.fields) }}
|
|
{% endif %}{% endmacro %}
|