diff --git a/templates/_includes/html/form/activity/add.html.twig b/templates/_includes/html/form/activity/add.html.twig index 79a8993..e160425 100644 --- a/templates/_includes/html/form/activity/add.html.twig +++ b/templates/_includes/html/form/activity/add.html.twig @@ -23,14 +23,14 @@ {{ form_widget(form.startDate, {attr: {class: 'w-100'}}) }}
- {{ form_label(form.endDate, 'Début réel', {label_attr: {class: 'input-text-label'}}) }} - {{ form_widget(form.endDate, {attr: {class: 'w-100'}}) }} + {{ form_label(form.realStartDate, 'Début réel', {label_attr: {class: 'input-text-label'}}) }} + {{ form_widget(form.realStartDate, {attr: {class: 'w-100'}}) }}
- {{ form_label(form.realStartDate, 'Fin planifié', {label_attr: {class: 'input-text-label'}}) }} - {{ form_widget(form.realStartDate, {attr: {class: 'w-100'}}) }} + {{ form_label(form.endDate, 'Fin planifié', {label_attr: {class: 'input-text-label'}}) }} + {{ form_widget(form.endDate, {attr: {class: 'w-100'}}) }}
{{ form_label(form.realEndDate, 'Fin réelle', {label_attr: {class: 'input-text-label'}}) }} diff --git a/templates/_includes/html/form/activity/edit.html.twig b/templates/_includes/html/form/activity/edit.html.twig index 420c365..e47bc5a 100644 --- a/templates/_includes/html/form/activity/edit.html.twig +++ b/templates/_includes/html/form/activity/edit.html.twig @@ -23,14 +23,14 @@ {{ form_widget(form.startDate, {attr: {class: 'w-100'}}) }}
- {{ form_label(form.endDate, 'Début réel', {label_attr: {class: 'input-text-label'}}) }} - {{ form_widget(form.endDate, {attr: {class: 'w-100'}}) }} + {{ form_label(form.realStartDate, 'Début réel', {label_attr: {class: 'input-text-label'}}) }} + {{ form_widget(form.realStartDate, {attr: {class: 'w-100'}}) }}
- {{ form_label(form.realStartDate, 'Fin planifié', {label_attr: {class: 'input-text-label'}}) }} - {{ form_widget(form.realStartDate, {attr: {class: 'w-100'}}) }} + {{ form_label(form.endDate, 'Fin planifié', {label_attr: {class: 'input-text-label'}}) }} + {{ form_widget(form.endDate, {attr: {class: 'w-100'}}) }}
{{ form_label(form.realEndDate, 'Fin réelle', {label_attr: {class: 'input-text-label'}}) }}