2021-09-03 08:00:22 -04:00
|
|
|
<style>
|
|
|
|
.paginator > a {
|
|
|
|
margin: 0.25rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.paginator > a.disabled {
|
|
|
|
pointer-events: none;
|
|
|
|
color: gray;
|
|
|
|
}
|
2022-03-12 13:56:32 -05:00
|
|
|
|
|
|
|
.paginator__sort > th {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.paginator__sort--down, .paginator__sort--up {
|
|
|
|
background-color: lightblue;
|
|
|
|
}
|
|
|
|
|
|
|
|
.paginator__sort--down:after {
|
|
|
|
padding-left: 0.25rem;
|
|
|
|
content: '▼';
|
|
|
|
}
|
|
|
|
|
|
|
|
.paginator__sort--up:after {
|
|
|
|
padding-left: 0.25rem;
|
|
|
|
content: '▲';
|
|
|
|
}
|
2022-04-18 13:54:01 -04:00
|
|
|
|
|
|
|
.hidden {
|
|
|
|
display: none;
|
|
|
|
visibility: hidden;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
table.hidden + .loading_container {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100vh;
|
|
|
|
z-index: 99999999;
|
|
|
|
background-image: url('/img/loader<?= random_int(1, 3) ?>.gif'); /* your icon gif file path */
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-color: #FFF;
|
|
|
|
background-position: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-09-03 08:00:22 -04:00
|
|
|
</style>
|
|
|
|
|
2021-07-10 19:18:17 +01:00
|
|
|
<main class="bd-main">
|
2021-07-12 09:03:02 -04:00
|
|
|
<div class="preloader"></div>
|
|
|
|
<div class="bd-side-background"></div>
|
|
|
|
<div class="bd-main-container container">
|
|
|
|
<div class="bd-duo">
|
|
|
|
<div class="bd-lead">
|
|
|
|
<article class="message is-info">
|
2021-07-10 19:18:17 +01:00
|
|
|
<div class="message-body">
|
2022-01-06 07:58:29 -05:00
|
|
|
There are <strong><?= $total_untagged ?></strong> pastes that still need to be tagged.
|
2021-07-10 19:18:17 +01:00
|
|
|
</div>
|
|
|
|
</article>
|
2021-10-15 20:38:36 -04:00
|
|
|
<?php if ($site_is_private): ?>
|
2021-08-26 05:35:21 -04:00
|
|
|
<h1 class="title is-5">This pastebin is private.</h1>
|
2021-10-15 20:38:36 -04:00
|
|
|
<?php else: ?>
|
2021-08-26 05:35:21 -04:00
|
|
|
<h1 class="title is-4">Pastes Archive</h1>
|
2022-01-06 07:58:29 -05:00
|
|
|
<div class="table_filterer">
|
|
|
|
<label><i class="fa fa-search"></i>
|
|
|
|
<input class="search" type="search" name="search" placeholder="Filter..."/>
|
|
|
|
</label>
|
2022-03-13 13:32:07 -04:00
|
|
|
Show
|
|
|
|
<select name="per_page">
|
|
|
|
<option value="10">10</option>
|
|
|
|
<option value="25">25</option>
|
|
|
|
<option value="50">50</option>
|
|
|
|
<option value="100">100</option>
|
|
|
|
</select>
|
|
|
|
per page
|
2022-01-06 07:58:29 -05:00
|
|
|
</div>
|
2022-04-18 13:54:01 -04:00
|
|
|
<table id="archive" class="table is-fullwidth is-hoverable hidden">
|
2021-07-12 09:03:02 -04:00
|
|
|
<thead>
|
2022-03-12 13:56:32 -05:00
|
|
|
<tr class="paginator__sort">
|
|
|
|
<th data-sort-field="title">Title</th>
|
|
|
|
<th data-sort-field="author">Author</th>
|
|
|
|
<th data-sort-field="tags">Tags</th>
|
2021-09-03 08:00:22 -04:00
|
|
|
</tr>
|
2021-07-12 09:03:02 -04:00
|
|
|
</thead>
|
2021-08-26 05:58:37 -04:00
|
|
|
<tbody>
|
2021-09-03 08:00:22 -04:00
|
|
|
<!-- Filled by DataTables -->
|
2021-08-26 05:58:37 -04:00
|
|
|
</tbody>
|
2021-07-12 09:03:02 -04:00
|
|
|
<tfoot>
|
2021-09-03 08:00:22 -04:00
|
|
|
<tr>
|
|
|
|
<th>Title</th>
|
|
|
|
<th>Author</th>
|
|
|
|
<th>Tags</th>
|
|
|
|
</tr>
|
2021-07-12 09:03:02 -04:00
|
|
|
</tfoot>
|
|
|
|
</table>
|
2022-04-18 13:54:01 -04:00
|
|
|
<div class="loading_container">
|
|
|
|
</div>
|
2021-07-10 18:21:03 -04:00
|
|
|
|
2021-09-03 08:00:22 -04:00
|
|
|
<div class="paginator"></div>
|
2021-07-12 09:03:02 -04:00
|
|
|
</div>
|
2021-10-15 20:38:36 -04:00
|
|
|
<?php endif; ?>
|
2021-07-12 09:03:02 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
2022-01-06 07:58:29 -05:00
|
|
|
</main>
|