diff --git a/src/main/webapp/assets/js/components/grids/debatesSurCarteGrid.vue b/src/main/webapp/assets/js/components/grids/debatesSurCarteGrid.vue index 84a31ad..7cc27ac 100644 --- a/src/main/webapp/assets/js/components/grids/debatesSurCarteGrid.vue +++ b/src/main/webapp/assets/js/components/grids/debatesSurCarteGrid.vue @@ -55,6 +55,10 @@ + + Restitution + + Aller au débat diff --git a/src/main/webapp/assets/js/router.js b/src/main/webapp/assets/js/router.js index 9e41cfc..1a8393c 100644 --- a/src/main/webapp/assets/js/router.js +++ b/src/main/webapp/assets/js/router.js @@ -26,6 +26,7 @@ const router = new VueRouter({ {path: '/documents-debats-sur-cartes/:id', component: vueLoader('views/documentDebatesSurCarte')}, {path: '/debats-sur-cartes', component: vueLoader('views/debatesSurCarte')}, {path: '/debats-sur-cartes/:id', component: vueLoader('views/debateSurCarte')}, + {path: '/debats-sur-cartes/:id/restitution', component: vueLoader('views/restitutionDebateSurCarte')}, {path: '*', component: vueLoader('views/404')}, ] }); \ No newline at end of file diff --git a/src/main/webapp/assets/js/views/restitutionDebateSurCarte.vue b/src/main/webapp/assets/js/views/restitutionDebateSurCarte.vue new file mode 100644 index 0000000..82bde32 --- /dev/null +++ b/src/main/webapp/assets/js/views/restitutionDebateSurCarte.vue @@ -0,0 +1,92 @@ + + + + + Débat - {{ debate.document.name }} + {{ $t("by").toLowerCase() }} {{ debate.document.author }} + + + + + {{ $t('proposed_by') }} : {{ debate.owner.fullName() }} + {{ $t('with') }} : {{ debate.teams.map( t => t.name ).join(", ") }} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file
{{ $t('proposed_by') }} : {{ debate.owner.fullName() }}
{{ $t('with') }} : {{ debate.teams.map( t => t.name ).join(", ") }}