diff --git a/Resources/views/ActivityReason/show.html.twig b/Resources/views/ActivityReason/show.html.twig index 830fd466e..e9d07d5b6 100644 --- a/Resources/views/ActivityReason/show.html.twig +++ b/Resources/views/ActivityReason/show.html.twig @@ -26,14 +26,14 @@
{{ 'The entity is active and will be proposed'|trans }}
{% else %}{{ "The entity is inactive and won't be proposed"|trans }}
{% endif %} -Id | -Name | -Active | -Actions | +{{ 'Name'|trans }} | +{{ 'Active'|trans }}Active | +{{ 'Actions'|trans }} |
---|---|---|---|---|---|---|
{{ entity.id }} | -{{ entity.name|localize_translatable_string }} | -{{ entity.active }} | - + + {{ entity.name|localize_translatable_string }} + + | +
+ {% if entity.active %}
+ {{ 'Active'|trans }} + {% else %} +{{ "Inactive"|trans }} + {% endif %} + |
+
+
|
Id | -{{ entity.id }} | -||
---|---|---|---|
Name | +{{ 'Name'|trans }} | {{ entity.name|localize_translatable_string }} | |
Active | -{{ entity.active }} | +{{ 'Active'|trans }} | +
+ {% if entity.active %}
+ {{ 'The entity is active and will be proposed'|trans }} + {% else %} +{{ "The entity is inactive and won't be proposed"|trans }} + {% endif %} + |