Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions frontend/src/assets/eCampLogo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 10 additions & 10 deletions frontend/src/assets/tents/TentDay.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
63 changes: 0 additions & 63 deletions frontend/src/components/campAdmin/CampMaterialLists.vue

This file was deleted.

72 changes: 0 additions & 72 deletions frontend/src/components/campAdmin/CampMaterialListsItem.vue

This file was deleted.

2 changes: 1 addition & 1 deletion frontend/src/components/checklist/ChecklistOverview.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<content-card :title="$tc('entity.checklist.name', 2)" toolbar>
<content-card :title="$tc('entity.checklist.name', 2)" toolbar max-width="800">
<template #title-actions>
<ChecklistCreate :camp="camp" :checklist-collection="checklistCollection" />
</template>
Expand Down
4 changes: 1 addition & 3 deletions frontend/src/views/admin/Checklist.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<template>
<v-container fluid>
<ChecklistDetail :checklist="checklist" />
</v-container>
<ChecklistDetail :checklist="checklist" />
</template>

<script>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/admin/Checklists.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<ChecklistOverview :checklist-collection="checklistCollection" />
<ChecklistOverview :checklist-collection="checklistCollection" max-width="900" />
</template>

<script>
Expand Down
64 changes: 34 additions & 30 deletions frontend/src/views/admin/Debug.vue
Original file line number Diff line number Diff line change
@@ -1,34 +1,38 @@
<template>
<v-container fluid class="d-grid h-full">
<content-card title="Debug" toolbar class="ma-sm-auto" style="width: auto">
<template #title>
<Coffee />
<v-toolbar-title tag="h1" class="font-weight-bold ml-2">Debug</v-toolbar-title>
</template>
<template #title-actions>
<language-switcher v-if="isDev" />
</template>
<v-card-text>
<h3>
Version
<a v-if="version" :href="versionLink" target="_blank">
{{ version }}
</a>
<span class="ml-1">{{ deploymentTime }}</span>
</h3>
</v-card-text>
<v-simple-table dense>
<tbody>
<tr v-for="[key, value] in envArray" :key="key">
<th>{{ key }}</th>
<td>
<code v-if="value !== undefined && value !== ''">{{ value }}</code>
</td>
</tr>
</tbody>
</v-simple-table>
</content-card>
</v-container>
<content-card
title="Debug"
toolbar
class="ma-sm-auto"
style="width: auto"
max-width="800"
>
<template #title>
<Coffee />
<v-toolbar-title tag="h1" class="font-weight-bold ml-2">Debug</v-toolbar-title>
</template>
<template #title-actions>
<language-switcher v-if="isDev" />
</template>
<v-card-text>
<h3>
Version
<a v-if="version" :href="versionLink" target="_blank">
{{ version }}
</a>
<span class="ml-1">{{ deploymentTime }}</span>
</h3>
</v-card-text>
<v-simple-table dense>
<tbody>
<tr v-for="[key, value] in envArray" :key="key">
<th>{{ key }}</th>
<td>
<code v-if="value !== undefined && value !== ''">{{ value }}</code>
</td>
</tr>
</tbody>
</v-simple-table>
</content-card>
</template>

<script>
Expand Down
3 changes: 2 additions & 1 deletion frontend/src/views/admin/SideBarAdmin.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<template>
<SideBar title="Admin" icon="mdi-menu">
<v-list class="py-0">
<SidebarListItem to="/admin/debug" title="Debug" />
<SidebarListItem to="/admin/debug" title="Debug" icon="mdi-bug" />
<SidebarListItem
v-if="featureChecklistEnabled"
to="/admin/checklists"
:title="$tc('entity.checklist.name', 2)"
icon="mdi-clipboard-list-outline"
/>
</v-list>
</SideBar>
Expand Down
Loading
Loading