Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

11 lines
442B

  1. {# @var ea \EasyCorp\Bundle\EasyAdminBundle\Context\AdminContext #}
  2. {# @var field \EasyCorp\Bundle\EasyAdminBundle\Dto\FieldDto #}
  3. {# @var entity \EasyCorp\Bundle\EasyAdminBundle\Dto\EntityDto #}
  4. {# this is a bit ugly, but Twig doesn't have a 'is numeric' test #}
  5. {% if field.formattedValue matches '/^\\d+$/' %}
  6. <span class="badge badge-secondary">{{ field.formattedValue }}</span>
  7. {% else %}
  8. {{ field.formattedValue }}
  9. {% endif %}