diff --git a/src/Bundle/ChillTaskBundle/Resources/views/SingleTask/confirm_deleteCourseTask.html.twig b/src/Bundle/ChillTaskBundle/Resources/views/SingleTask/confirm_deleteCourseTask.html.twig
deleted file mode 100644
index 49857188c..000000000
--- a/src/Bundle/ChillTaskBundle/Resources/views/SingleTask/confirm_deleteCourseTask.html.twig
+++ /dev/null
@@ -1,19 +0,0 @@
-{% extends "@ChillPerson/AccompanyingCourse/layout.html.twig" %}
-
-{% set activeRouteKey = 'chill_task_task_list' %}
-{% set course = task.course %}
-
-{% block title 'Remove task'|trans %}
-
-{% block content %}
-
- {{ include('@ChillMain/Util/confirmation_template.html.twig',
- {
- 'title' : 'Remove task'|trans,
- 'confirm_question' : 'Are you sure you want to remove the task about accompanying period "%id%" ?'|trans({ '%id%' : course.id } ),
- 'cancel_route' : 'chill_task_singletask_courselist',
- 'cancel_parameters' : app.request.query.get('list_params', { } ),
- 'form' : delete_form,
- } ) }}
-
-{% endblock %}
diff --git a/src/Bundle/ChillTaskBundle/Resources/views/SingleTask/edit.html.twig b/src/Bundle/ChillTaskBundle/Resources/views/SingleTask/edit.html.twig
deleted file mode 100644
index 590740cf0..000000000
--- a/src/Bundle/ChillTaskBundle/Resources/views/SingleTask/edit.html.twig
+++ /dev/null
@@ -1,30 +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 person is defined ? "@ChillPerson/Person/layout.html.twig" %}
-
-{% set activeRouteKey = 'chill_task_single_task_edit' %}
-{% set person = task.person %}
-
-{% block title %}
- {{ 'Edit task'|trans }}
-{% endblock %}
-
-{% block personcontent %}
-
- {% include 'ChillTaskBundle:SingleTask:_edit.html.twig' %}
-
-{% endblock %}
diff --git a/src/Bundle/ChillTaskBundle/Resources/views/SingleTask/editCourseTask.html.twig b/src/Bundle/ChillTaskBundle/Resources/views/SingleTask/editCourseTask.html.twig
deleted file mode 100644
index 1805761ae..000000000
--- a/src/Bundle/ChillTaskBundle/Resources/views/SingleTask/editCourseTask.html.twig
+++ /dev/null
@@ -1,14 +0,0 @@
-{% extends "@ChillPerson/AccompanyingCourse/layout.html.twig" %}
-
-{% set activeRouteKey = 'chill_task_single_task_edit' %}
-{% set course = task.course %}
-
-{% block title %}
- {{ 'Edit task'|trans }}
-{% endblock %}
-
-{% block content %}
-
- {% include 'ChillTaskBundle:SingleTask:_edit.html.twig' %}
-
-{% endblock %}
diff --git a/src/Bundle/ChillTaskBundle/Resources/views/SingleTask/newCourseTask.html.twig b/src/Bundle/ChillTaskBundle/Resources/views/SingleTask/newCourseTask.html.twig
deleted file mode 100644
index 083c0795c..000000000
--- a/src/Bundle/ChillTaskBundle/Resources/views/SingleTask/newCourseTask.html.twig
+++ /dev/null
@@ -1,12 +0,0 @@
-{% extends "@ChillPerson/AccompanyingCourse/layout.html.twig" %}
-
-{% set activeRouteKey = 'chill_task_single_task_new' %}
-{# {% set person = task.person %} #}
-
-{% block title %}
- {{ 'New task'|trans }}
-{% endblock %}
-
-{% block content %}
- {% include 'ChillTaskBundle:SingleTask:_new.html.twig' %}
-{% endblock %}
diff --git a/src/Bundle/ChillTaskBundle/Resources/views/SingleTask/show.html.twig b/src/Bundle/ChillTaskBundle/Resources/views/SingleTask/show.html.twig
deleted file mode 100644
index 19bf70777..000000000
--- a/src/Bundle/ChillTaskBundle/Resources/views/SingleTask/show.html.twig
+++ /dev/null
@@ -1,32 +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 "@ChillPerson/Person/layout.html.twig" %}
-
-
-{% set activeRouteKey = 'chill_task_single_task_show' %}
-{% set person = task.person %}
-
-{% block title %}
- {{ 'Task'|trans }}
-{% endblock %}
-
-
-{% block personcontent %}
-
- {% include 'ChillTaskBundle:SingleTask:_show.html.twig' %}
-
-{% endblock %}
diff --git a/src/Bundle/ChillTaskBundle/Resources/views/SingleTask/showCourseTask.html.twig b/src/Bundle/ChillTaskBundle/Resources/views/SingleTask/showCourseTask.html.twig
deleted file mode 100644
index 643617a55..000000000
--- a/src/Bundle/ChillTaskBundle/Resources/views/SingleTask/showCourseTask.html.twig
+++ /dev/null
@@ -1,16 +0,0 @@
-{% extends "@ChillPerson/AccompanyingCourse/layout.html.twig" %}
-
-
-{% set activeRouteKey = 'chill_task_single_task_show' %}
-{% set accompanyingCourse = task.course %}
-
-{% block title %}
- {{ 'Task'|trans }}
-{% endblock %}
-
-
-{% block content %}
-
- {% include 'ChillTaskBundle:SingleTask:_show.html.twig' %}
-
-{% endblock %}