mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
40 lines
863 B
Vue
40 lines
863 B
Vue
<template>
|
|
<div>
|
|
<b-list-group>
|
|
<b-list-group-item
|
|
v-for="{ id, name, uri } in storages" :key="id"
|
|
:to="{ name: 'backup-list', params: { id }}"
|
|
class="d-flex justify-content-between align-items-center pr-0"
|
|
>
|
|
<div>
|
|
<h5 class="font-weight-bold">
|
|
{{ name }}
|
|
<small class="text-secondary">{{ id }}</small>
|
|
</h5>
|
|
<p class="m-0">
|
|
{{ uri }}
|
|
</p>
|
|
</div>
|
|
<icon iname="chevron-right" class="lg fs-sm ml-auto" />
|
|
</b-list-group-item>
|
|
</b-list-group>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'Backup',
|
|
|
|
data () {
|
|
return {
|
|
storages: [
|
|
{
|
|
id: 'local',
|
|
name: this.$i18n.t('local_archives'),
|
|
uri: '/home/yunohost.backup/'
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
</script>
|