Skip to content

Commit 08d5d31

Browse files
committed
feat(Upload): add upload exercices page
1 parent 86b60e9 commit 08d5d31

File tree

1 file changed

+30
-0
lines changed
  • pages/administration/importer-des-exercices

1 file changed

+30
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<template>
2+
<div class="container--with-menu" id="CreateExercise">
3+
<div class="banner banner--with-shadow-bottom">
4+
<div class="banner__nav">
5+
<span>
6+
Administration > Importation d'exercices
7+
</span>
8+
</div>
9+
</div>
10+
11+
<div class="wrapper">
12+
<ImportForm title="Importer des exercices"/>
13+
</div>
14+
</div>
15+
16+
</template>
17+
18+
19+
<script lang="ts">
20+
import {Component, Vue} from 'vue-property-decorator'
21+
import ImportForm from "~/components/Gestion/ImportForm.vue";
22+
23+
@Component({
24+
components: {ImportForm},
25+
middleware: ['auth', 'admin']
26+
})
27+
export default class extends Vue {
28+
}
29+
</script>
30+

0 commit comments

Comments
 (0)