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.

status.html.twig 613B

3 år sedan
3 år sedan
3 år sedan
3 år sedan
12345678910111213
  1. {% import "@LcSov/adminlte/macro/badge.html.twig" as macro %}
  2. {% if status is not defined %}
  3. {% set status = entity.instance.status %}
  4. {% endif %}
  5. {% if status == 'open' %}
  6. {{ macro.badge_success(status|sov_trans_admin_choice('status','Ticket')) }}
  7. {% elseif status == 'being-processed' %}
  8. {{ macro.badge_warning(status|sov_trans_admin_choice('status','Ticket')) }}
  9. {% elseif status == 'processed' %}
  10. {{ macro.badge_info(status|sov_trans_admin_choice('status','Ticket')) }}
  11. {% elseif status == 'closed' %}
  12. {{ macro.badge_danger(status|sov_trans_admin_choice('status','Ticket')) }}
  13. {% endif %}