{% extends 'base.html.twig' %} {% block title %} {{ 'Unit list'|trans }} {% endblock %} {% block body %}
{% for area in imageMap.areas %}
{% set posX = area.x1 -3 %}
{% set posY = area.y1 -3 %}
{% set width = area.x2 - posX %}
{% set height = area.y2 - posY %}
{% endfor %}
|
{{ 'Category'|trans }}: {{ unit.name }}
{% for partSection in unitParts.partSections %}
{% if partSection.title is defined %}
{{ partSection.title }}{% endif %}
|