diff --git a/Form/ReportType.php b/Form/ReportType.php
index 0eb17773a..4f7dfd3b3 100644
--- a/Form/ReportType.php
+++ b/Form/ReportType.php
@@ -38,7 +38,7 @@ class ReportType extends AbstractType
$builder
->add('user')
->add('date', 'date',
- array('required' => false, 'widget' => 'single_text', 'format' => 'dd-MM-yyyy'))
+ array('required' => true, 'widget' => 'single_text', 'format' => 'dd-MM-yyyy'))
//->add('scope')
->add('cFData', 'custom_field',
array('attr' => array('class' => 'only-label'), 'group' => $options['cFGroup']))
diff --git a/Resources/translations/messages.fr.yml b/Resources/translations/messages.fr.yml
new file mode 100644
index 000000000..ce323b21d
--- /dev/null
+++ b/Resources/translations/messages.fr.yml
@@ -0,0 +1,14 @@
+'Report edit': "Edition d'un rapport"
+'Save report': "Enregister le rapport"
+'Reset report': "Remise à zéro"
+'Add a report': "Ajout d'un rapport"
+'Add report': 'Ajouter le rapport'
+'Create a new report': 'Créer un nouveau rapport'
+'Report view': "Détails d'un rapport"
+'Update the report': 'Mettre à jour le rapport'
+Details: Détails
+Person: Personne
+Scope: Scope
+Date: Date
+User: Utilisateur
+'Report type': 'Type de rapport'
\ No newline at end of file
diff --git a/Resources/views/Report/edit.html.twig b/Resources/views/Report/edit.html.twig
index 10ff09e23..6cc18d064 100644
--- a/Resources/views/Report/edit.html.twig
+++ b/Resources/views/Report/edit.html.twig
@@ -18,15 +18,15 @@
{% set activeRouteKey = 'report_select_type' %}
-{% block title %}{{ 'Edition du rapport' |trans() }}{% endblock title %}
+{% block title %}{{ 'Report edit' |trans }}{% endblock title %}
{% block personcontent %}
{{ form_start(edit_form) }}
{{ form_widget(edit_form) }}
-
-
+
+
{{ form_end(edit_form) }}
{% endblock %}
diff --git a/Resources/views/Report/list.html.twig b/Resources/views/Report/list.html.twig
deleted file mode 100644
index fcc9eb600..000000000
--- a/Resources/views/Report/list.html.twig
+++ /dev/null
@@ -1,46 +0,0 @@
-{#
- * Copyright (C) 2014, Champs Libres Cooperative SCRLFS,
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see .
-#}
-{% extends "ChillPersonBundle::layout.html.twig" %}
-
-{% set activeRouteKey = 'report_select_type' %}
-
-{% block title %}{{ 'List des rapports' |trans() }}{% endblock title %}
-
-{% block personcontent %}
-
-
-
-
{{ 'Date' | trans }}
-
{{ 'Report Type' | trans }}
-
{{ 'Report Scope' | trans }}
-
-
-
-
-
- {% for report in reports %}
-
-
{% if report.date %}{{ report.date|date('d-m-Y') }}{% endif %}