Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

amount.html.twig 278B

123456789
  1. {% set item = entity.instance %}
  2. {% if item.unit == constant('App\\Entity\\Config\\Unit::UNIT_PERCENT') %}
  3. {% set unit = '%' %}
  4. {% elseif item.unit == constant('App\\Entity\\Config\\Unit::UNIT_AMOUNT') %}
  5. {% set unit = '€' %}
  6. {% endif %}
  7. -{{ item.value }}{{ unit }}