mirror of
https://github.com/hkalexling/Mango.git
synced 2026-04-24 00:03:12 -04:00
41 lines
1.6 KiB
Plaintext
41 lines
1.6 KiB
Plaintext
<div x-data="component()" x-init="load()" x-cloak x-show="!loading">
|
|
<p x-show="empty" class="uk-text-lead uk-text-center">No missing items found.</p>
|
|
<div x-show="!empty">
|
|
<p>The following items were present in your library, but now we can't find them anymore. If you deleted them mistakenly, try to recover the files or folders, put them back to where they were, and rescan the library. Otherwise, you can safely delete them and the associated metadata using the buttons below to free up database space.</p>
|
|
<button class="uk-button uk-button-danger" @click="rmAll()">Delete All</button>
|
|
<table class="uk-table uk-table-striped uk-overflow-auto">
|
|
<thead>
|
|
<tr>
|
|
<th>Type</th>
|
|
<th>Relative Path</th>
|
|
<th>ID</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<template x-for="title in titles" :key="title">
|
|
<tr :id="`title-${title.id}`">
|
|
<td>Title</td>
|
|
<td x-text="title.path"></td>
|
|
<td x-text="title.id"></td>
|
|
<td><a @click="rm($event)" uk-icon="trash"></a></td>
|
|
</tr>
|
|
</template>
|
|
<template x-for="entry in entries" :key="entry">
|
|
<tr :id="`entry-${entry.id}`">
|
|
<td>Entry</td>
|
|
<td x-text="entry.path"></td>
|
|
<td x-text="entry.id"></td>
|
|
<td><a @click="rm($event)" uk-icon="trash"></a></td>
|
|
</tr>
|
|
</template>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
<% content_for "script" do %>
|
|
<script src="<%= base_url %>js/alert.js"></script>
|
|
<script src="<%= base_url %>js/missing-items.js"></script>
|
|
<% end %>
|