您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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