Merge 17d5adbaf2
into 35d1c09243
commit
4dfa97633e
|
@ -6,6 +6,7 @@ rice-box.go
|
||||||
/filebrowser
|
/filebrowser
|
||||||
/filebrowser.exe
|
/filebrowser.exe
|
||||||
/dist
|
/dist
|
||||||
|
/vendor
|
||||||
|
|
||||||
.DS_Store
|
.DS_Store
|
||||||
node_modules
|
node_modules
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
22
|
|
@ -7,12 +7,14 @@
|
||||||
<template v-if="listing">
|
<template v-if="listing">
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<thead>
|
||||||
<th>#</th>
|
<tr>
|
||||||
<th>{{ $t("settings.shareDuration") }}</th>
|
<th>#</th>
|
||||||
<th></th>
|
<th>{{ $t("settings.shareDuration") }}</th>
|
||||||
<th></th>
|
<th></th>
|
||||||
</tr>
|
<th></th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
|
||||||
<tr v-for="link in links" :key="link.hash">
|
<tr v-for="link in links" :key="link.hash">
|
||||||
<td>{{ link.hash }}</td>
|
<td>{{ link.hash }}</td>
|
||||||
|
|
|
@ -9,15 +9,17 @@
|
||||||
|
|
||||||
<div class="card-content full" v-if="links.length > 0">
|
<div class="card-content full" v-if="links.length > 0">
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<thead>
|
||||||
<th>{{ t("settings.path") }}</th>
|
<tr>
|
||||||
<th>{{ t("settings.shareDuration") }}</th>
|
<th>{{ t("settings.path") }}</th>
|
||||||
<th v-if="authStore.user?.perm.admin">
|
<th>{{ t("settings.shareDuration") }}</th>
|
||||||
{{ t("settings.username") }}
|
<th v-if="authStore.user?.perm.admin">
|
||||||
</th>
|
{{ t("settings.username") }}
|
||||||
<th></th>
|
</th>
|
||||||
<th></th>
|
<th></th>
|
||||||
</tr>
|
<th></th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
|
||||||
<tr v-for="link in links" :key="link.hash">
|
<tr v-for="link in links" :key="link.hash">
|
||||||
<td>
|
<td>
|
||||||
|
|
|
@ -14,12 +14,14 @@
|
||||||
|
|
||||||
<div class="card-content full">
|
<div class="card-content full">
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<thead>
|
||||||
<th>{{ t("settings.username") }}</th>
|
<tr>
|
||||||
<th>{{ t("settings.admin") }}</th>
|
<th>{{ t("settings.username") }}</th>
|
||||||
<th>{{ t("settings.scope") }}</th>
|
<th>{{ t("settings.admin") }}</th>
|
||||||
<th></th>
|
<th>{{ t("settings.scope") }}</th>
|
||||||
</tr>
|
<th></th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
|
||||||
<tr v-for="user in users" :key="user.id">
|
<tr v-for="user in users" :key="user.id">
|
||||||
<td>{{ user.username }}</td>
|
<td>{{ user.username }}</td>
|
||||||
|
|
Loading…
Reference in New Issue