diff --git a/src/Bundle/ChillMainBundle/Entity/Center.php b/src/Bundle/ChillMainBundle/Entity/Center.php index 23bd2812d..5e72f43a2 100644 --- a/src/Bundle/ChillMainBundle/Entity/Center.php +++ b/src/Bundle/ChillMainBundle/Entity/Center.php @@ -126,6 +126,11 @@ class Center implements HasCenterInterface return $this->regroupments; } + public function getIsActive(): bool + { + return $this->isActive; + } + /** * @param $name * @@ -137,4 +142,11 @@ class Center implements HasCenterInterface return $this; } + + public function setIsActive(bool $isActive): self + { + $this->isActive = $isActive; + + return $this; + } } diff --git a/src/Bundle/ChillMainBundle/Resources/views/Admin/Center/index.html.twig b/src/Bundle/ChillMainBundle/Resources/views/Admin/Center/index.html.twig index e5554f6d9..27c19c504 100644 --- a/src/Bundle/ChillMainBundle/Resources/views/Admin/Center/index.html.twig +++ b/src/Bundle/ChillMainBundle/Resources/views/Admin/Center/index.html.twig @@ -4,7 +4,7 @@ {% embed '@ChillMain/CRUD/_index.html.twig' %} {% block table_entities_thead_tr %} {{ 'Label'|trans }} -{# {{ 'Active'|trans }}#} + {{ 'Active'|trans }}   {% endblock %} @@ -12,13 +12,13 @@ {% for entity in entities %} {{ entity.name }} -{# #} -{# {% if entity.isActive %}#} -{# #} -{# {% else %}#} -{# #} -{# {% endif %}#} -{# #} + + {% if entity.isActive %} + + {% else %} + + {% endif %} +