You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
434B

  1. {% for entity in field.value %}
  2. {% if field.customOption('crudControllerFqcn') is not null and entity is not null%}
  3. <a href="{{ ea_url_short(field.customOption('crudControllerFqcn'), 'edit', entity.id) }}">
  4. <span class="badge badge-secondary">
  5. {{ entity }}
  6. </span>
  7. </a>
  8. {% else %}
  9. <span class="badge badge-secondary">{{ entity }}</span>
  10. {% endif %}
  11. {% endfor %}