2015-11-15 16:49:22 +00:00
|
|
|
{% import 'tables.tmpl' as tables -%}
|
|
|
|
|
2015-05-19 14:54:24 +00:00
|
|
|
``{{event.type}}``
|
2015-05-28 09:45:00 +00:00
|
|
|
{{(4 + event.type | length) * title_kind}}
|
2016-10-13 16:23:11 +00:00
|
|
|
|
|
|
|
{% if (event.typeof | length) %}
|
2015-05-26 09:40:04 +00:00
|
|
|
*{{event.typeof}}*
|
2015-12-08 10:47:07 +00:00
|
|
|
{{event.typeof_info}}
|
2015-05-21 12:31:08 +00:00
|
|
|
|
2016-10-13 16:23:11 +00:00
|
|
|
{% endif -%}
|
|
|
|
|
2017-10-17 15:34:50 +00:00
|
|
|
{{event.desc}}
|
|
|
|
|
2016-02-23 14:43:36 +00:00
|
|
|
{% for table in event.content_fields %}
|
2015-05-26 16:32:51 +00:00
|
|
|
{{"``"+table.title+"``" if table.title else "" }}
|
2015-05-19 14:54:24 +00:00
|
|
|
|
2015-11-15 16:49:22 +00:00
|
|
|
{{ tables.paramtable(table.rows, [(table.title or "Content") ~ " Key", "Type", "Description"]) }}
|
2015-05-19 14:54:24 +00:00
|
|
|
|
2015-05-21 09:39:54 +00:00
|
|
|
{% endfor %}
|
2015-10-28 15:00:53 +00:00
|
|
|
Example{% if examples | length > 1 %}s{% endif %}:
|
2015-10-26 16:27:57 +00:00
|
|
|
|
2015-10-28 15:00:53 +00:00
|
|
|
{% for example in examples %}
|
2015-10-26 16:27:57 +00:00
|
|
|
.. code:: json
|
2015-05-19 14:54:24 +00:00
|
|
|
|
2015-05-21 10:12:43 +00:00
|
|
|
{{example | jsonify(4, 4)}}
|
2015-10-28 15:00:53 +00:00
|
|
|
{% endfor %}
|