You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
827 B
Cheetah
18 lines
827 B
Cheetah
{{common_event.title}} Fields
|
|
{{(7 + common_event.title | length) * '-'}}
|
|
|
|
{{common_event.desc | wrap(80)}}
|
|
|
|
================== ================= ===========================================
|
|
Key Type Description
|
|
================== ================= ===========================================
|
|
{% for row in common_event.rows -%}
|
|
{# -#}
|
|
{# Row type needs to prepend spaces to line up with the type column (19 ch) -#}
|
|
{# Desc needs to prepend the required text (maybe) and prepend spaces too -#}
|
|
{# It also needs to then wrap inside the desc col (43 ch width) -#}
|
|
{# -#}
|
|
{{row.key}}{{row.type|indent(19-row.key|length)}}{{row.desc | indent(18 - (row.type|length)) |wrap(43) |indent_block(37)}}
|
|
{% endfor -%}
|
|
================== ================= ===========================================
|