mirror of
https://github.com/matrix-org/matrix-spec
synced 2026-01-28 18:13:45 +01:00
Use process_data_type rather than reinventing our own wheel; doing so means that the 'Required' fields are correctly annotated as such.
14 lines
314 B
Cheetah
14 lines
314 B
Cheetah
{% import 'tables.tmpl' as tables -%}
|
|
|
|
{{common_event.type}} Fields
|
|
{{(7 + common_event.type | length) * title_kind}}
|
|
|
|
{{common_event.desc}}
|
|
|
|
{% for table in common_event.tables %}
|
|
{{"``"+table.title+"``" if table.title else "" }}
|
|
|
|
{{ tables.paramtable(table.rows, ["Key", "Type", "Description"]) }}
|
|
|
|
{% endfor %}
|