Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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 }}