remove group constrainte, it's now a normal group

This commit is contained in:
2021-04-13 19:05:01 +02:00
parent 65d40f494f
commit e5737cd572
2401 changed files with 23705 additions and 1454 deletions

View File

@ -0,0 +1,9 @@
%for %%lead in %%leader
leader: %%lead
%if %%hasattr(%%lead, 'follower1')
follower1: %%lead.follower1
%end if
%if %%hasattr(%%lead, 'follower2')
follower2: %%lead.follower2
%end if
%end for

View File

@ -0,0 +1,9 @@
{% for lead in leader -%}
leader: {{ lead }}
{% if lead.follower1 is defined -%}
follower1: {{ lead.follower1 if lead.follower1 }}
{% endif -%}
{% if lead.follower2 is defined -%}
follower2: {{ lead.follower2 if lead.follower2 }}
{% endif -%}
{% endfor -%}