Skip to content

Commit

Permalink
Merge pull request #118 from abes-esr/ITEM-216-front-modifier-menu-ha…
Browse files Browse the repository at this point in the history
…mburger

- Ajout des liens dans le menu
  • Loading branch information
EryneKL authored Sep 17, 2024
2 parents c9f5329 + f9bfc3c commit 83b4454
Showing 1 changed file with 27 additions and 3 deletions.
30 changes: 27 additions & 3 deletions src/components/Structure/Navbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

<v-list density="compact" nav>
<v-list-item>
<v-list-item-title class="text-h6">Recouvrement</v-list-item-title>
<v-list-item-title class="text-h6 pb-1">Recouvrement</v-list-item-title>
</v-list-item>

<v-list-item @click="navigateTo('recouvrement')">
Expand All @@ -63,7 +63,7 @@

<v-list density="compact" nav>
<v-list-item>
<v-list-item-title class="text-h6">Creations</v-list-item-title>
<v-list-item-title class="text-h6 pb-1">Creations</v-list-item-title>
</v-list-item>

<v-list-item @click="navigateTo('exemplarisation')">
Expand All @@ -86,7 +86,7 @@

<v-list density="compact" nav>
<v-list-item>
<v-list-item-title class="text-h6">Modifications</v-list-item-title>
<v-list-item-title class="text-h6 pb-1">Modifications</v-list-item-title>
</v-list-item>

<v-list-item @click="navigateTo('modification')">
Expand All @@ -104,6 +104,30 @@
</v-list-item>

</v-list>

<v-divider></v-divider>

<v-list density="compact" nav>
<v-list-item>
<v-list-item-title class="text-h6 pb-1">Suppressions</v-list-item-title>
</v-list-item>

<v-list-item @click="navigateTo('suppression')">
<template v-slot:prepend>
<v-icon>mdi-file-document-remove</v-icon>
</template>
<v-list-item-title>Supprimer des exemplaires</v-list-item-title>
</v-list-item>

<v-list-item @click="navigateTo('suppression-tableau')">
<template v-slot:prepend>
<v-icon>mdi-format-list-bulleted</v-icon>
</template>
<v-list-item-title>Tableau des <br>suppressions d'exemplaires</v-list-item-title>
</v-list-item>

</v-list>

</v-navigation-drawer>
</template>

Expand Down

0 comments on commit 83b4454

Please sign in to comment.