Skip to content

Commit

Permalink
Umbenennung Größenordnung
Browse files Browse the repository at this point in the history
  • Loading branch information
Daugl committed Jul 6, 2024
1 parent 1d36f44 commit 8ce6ab3
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions templates/einheit.j2t
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,24 @@
<rect x="9" y="63" width="238" height="130" fill="{{ ShadowColor }}" stroke="none" />
<rect x="10" y="64" width="236" height="128" fill="{{ OutlineColor }}" stroke="none" />
<rect x="16" y="70" width="224" height="116" fill="{{ BaseColor }}" stroke="none" />
{% if unit_size == "Trupp" %}
{% if UnitSize == "Trupp" %}
<ellipse cx="128" cy="48" rx="10" ry="10" fill="{{ ShadowColor }}" stroke="none" />
{% elif unit_size == "Gruppe" %}
{% elif UnitSize == "Gruppe" %}
<ellipse cx="64" cy="48" rx="10" ry="10" fill="{{ ShadowColor }}" stroke="none" />
<ellipse cx="192" cy="48" rx="10" ry="10" fill="{{ ShadowColor }}" stroke="none" />
{% elif unit_size == "Staffel" %}
{% elif UnitSize == "Staffel" %}
<ellipse cx="128" cy="48" rx="10" ry="10" fill="{{ ShadowColor }}" stroke="none" />
<ellipse cx="128" cy="24" rx="10" ry="10" fill="{{ ShadowColor }}" stroke="none" />
{% elif unit_size == "Zug" %}
{% elif UnitSize == "Zug" %}
<ellipse cx="128" cy="48" rx="10" ry="10" fill="{{ ShadowColor }}" stroke="none" />
<ellipse cx="64" cy="48" rx="10" ry="10" fill="{{ ShadowColor }}" stroke="none" />
<ellipse cx="192" cy="48" rx="10" ry="10" fill="{{ ShadowColor }}" stroke="none" />
{% elif unit_size == "Bereitschaft" or unit_size == "Verband 1" %}
{% elif UnitSize == "Bereitschaft" or UnitSize == "Verband 1" %}
<rect x="123" y="28" width="10" height="36" fill="{{ ShadowColor}}" stroke="none" />
{% elif unit_size == "Abteilung" or unit_size == "Verband 2" %}
{% elif UnitSize == "Abteilung" or UnitSize == "Verband 2" %}
<rect x="103" y="28" width="10" height="36" fill="{{ ShadowColor}}" stroke="none" />
<rect x="143" y="28" width="10" height="36" fill="{{ ShadowColor}}" stroke="none" />
{% elif unit_size == "Großverband" or unit_size == "Verband 3" %}
{% elif UnitSize == "Großverband" or UnitSize == "Verband 3" %}
<rect x="103" y="28" width="10" height="36" fill="{{ ShadowColor}}" stroke="none" />
<rect x="123" y="28" width="10" height="36" fill="{{ ShadowColor}}" stroke="none" />
<rect x="143" y="28" width="10" height="36" fill="{{ ShadowColor}}" stroke="none" />
Expand Down

0 comments on commit 8ce6ab3

Please sign in to comment.