diff --git a/src/Bundle/ChillPersonBundle/Resources/public/js/AccompanyingCourse.vue b/src/Bundle/ChillPersonBundle/Resources/public/js/AccompanyingCourse.vue
index 1b9f60219..fe2447547 100644
--- a/src/Bundle/ChillPersonBundle/Resources/public/js/AccompanyingCourse.vue
+++ b/src/Bundle/ChillPersonBundle/Resources/public/js/AccompanyingCourse.vue
@@ -1,56 +1,33 @@
-
-
Usagers concernés
-
- - id
- - {{ accompanying_course.id }}
- - opening_date
- - {{ accompanying_course.opening_date }}
- - closing_date
- - {{ accompanying_course.closing_date }}
- - remark
- - {{ accompanying_course.remark }}
- - closing_motive
- - {{ accompanying_course.closing_motive }}
-
-
-
-
-
- firstname |
- lastname |
- startdate |
- enddate |
- actions |
-
-
-
-
- {{ person.firstname }} |
- {{ person.lastname }} |
- {{ person.startdate }} |
- {{ person.enddate }} |
-
-
- |
-
-
-
-
-
+
+
Parcours
+
+ - id
+ - {{ accompanying_course.id }}
+ - opening_date
+ - {{ accompanying_course.opening_date }}
+ - closing_date
+ - {{ accompanying_course.closing_date }}
+ - remark
+ - {{ accompanying_course.remark }}
+ - closing_motive
+ - {{ accompanying_course.closing_motive }}
+
+
+
+
diff --git a/src/Bundle/ChillPersonBundle/Resources/public/js/components/Requestor.vue b/src/Bundle/ChillPersonBundle/Resources/public/js/components/Requestor.vue
new file mode 100644
index 000000000..30fe1298e
--- /dev/null
+++ b/src/Bundle/ChillPersonBundle/Resources/public/js/components/Requestor.vue
@@ -0,0 +1,20 @@
+
+
+
Demandeur
+ {{ accompanying_course.id }}
+ {{ accompanying_course.remark }}
+
+
+
+
diff --git a/src/Bundle/ChillPersonBundle/Resources/public/js/index.js b/src/Bundle/ChillPersonBundle/Resources/public/js/index.js
index 1fd76e2df..c10f555f3 100644
--- a/src/Bundle/ChillPersonBundle/Resources/public/js/index.js
+++ b/src/Bundle/ChillPersonBundle/Resources/public/js/index.js
@@ -1,9 +1,9 @@
-import AccompanyingCourseComponent from './AccompanyingCourse.vue';
+import AccompanyingCourse from './AccompanyingCourse.vue';
import { createApp } from 'vue';
const app = createApp({
- name: 'AppGlobal',
- template: '',
+ name: 'App',
+ template: ``
})
-.component('accompanying-course', AccompanyingCourseComponent)
+.component('accompanying-course', AccompanyingCourse)
.mount('#app');