<templates xml:space="preserve">
    <t t-name="repetition-text-content" t-foreach="seq">*</t>
    <t t-name="repetition-dom-content" t-foreach="seq"><b/></t>
    <b t-name="repetition-self" t-foreach="seq"/>

    <t t-name="scope-self" t-foreach="seq" t-esc="seq"/>
    <t t-name="scope-value" t-foreach="seq" t-esc="seq_value"/>
    <t t-name="scope-index" t-foreach="seq" t-esc="seq_index"/>
    <t t-name="scope-first" t-foreach="seq"><t t-esc="seq_first"/> </t>
    <t t-name="scope-last" t-foreach="seq"><t t-esc="seq_last"/> </t>
    <t t-name="scope-parity" t-foreach="seq"><t t-esc="seq_parity"/> </t>
    <t t-name="scope-size" t-foreach="seq"><t t-esc="seq_size"/> </t>

    <t t-name="aliasing" t-foreach="seq" t-as="item" t-esc="item"/>
    <t t-name="loopvars-aliasing"
       t-foreach="seq" t-as="item"><t t-esc="item_parity"/> </t>
</templates>
