{% extends '@SonataAdmin/CRUD/base_list_field.html.twig' %}
{#
This template renders the 'status' field (0 or 1) as a colored Bootstrap/AdminLTE badge.
The entity being rendered is an instance of App\Entity\CommissionConfig.
#}
{% block field %}
{% set status = object.status %}
{% set badge_style = 'background-color:#777 !important;' %}
{% if status == 1 %}
{% set status_text = 'Active' %}
{% set badge_class = 'bg-success' %} {# Green badge for active #}
{% set badge_style = 'background-color:#00a65a !important;' %}
{% else %}
{% set status_text = 'Inactive' %}
{% set badge_class = 'bg-danger' %} {# Red badge for inactive #}
{% set badge_style = 'background-color:#dd4b39 !important;' %}
{% endif %}
{# Render the badge using the standard AdminLTE/Bootstrap classes #}
{{ status_text }}
{% endblock %}