mirror of
https://github.com/Neetpone/ponepaste.git
synced 2025-03-12 14:40:09 +01:00
121 lines
No EOL
4 KiB
PHP
121 lines
No EOL
4 KiB
PHP
<style>
|
|
.paginator > a {
|
|
margin: 0.25rem;
|
|
}
|
|
|
|
.paginator > a.disabled {
|
|
pointer-events: none;
|
|
color: gray;
|
|
}
|
|
|
|
.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: '▲';
|
|
}
|
|
|
|
.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('/assets/img/loader/<?= random_int(1, 3) ?>.gif');
|
|
background-repeat: no-repeat;
|
|
background-color: #FFF;
|
|
background-position: center;
|
|
}
|
|
|
|
|
|
</style>
|
|
|
|
<main class="bd-main">
|
|
<div class="container">
|
|
<div class="bd-duo">
|
|
<div class="bd-lead">
|
|
<article class="message is-info">
|
|
<div class="message-body">
|
|
There are <strong><?= $total_untagged ?></strong> pastes that still need to be tagged.
|
|
</div>
|
|
</article>
|
|
<?php if ($site_is_private): ?>
|
|
<h1 class="title is-5">This pastebin is private.</h1>
|
|
<?php else: ?>
|
|
<h1 class="title is-4">Pastes Archive</h1>
|
|
<form class="table_filterer" method="GET">
|
|
<label><i class="fa fa-search"></i>
|
|
<input class="search" type="search" name="q" placeholder="Filter..."
|
|
value="<?= pp_html_escape($filter_value); ?>"/>
|
|
</label>
|
|
<label>
|
|
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
|
|
</label>
|
|
<button type="submit" class="button js-hidden">Search</button>
|
|
</form>
|
|
<table id="archive" class="table is-fullwidth is-hoverable">
|
|
<thead>
|
|
<tr class="paginator__sort">
|
|
<th data-sort-field="title">Title</th>
|
|
<th data-sort-field="author">Author</th>
|
|
<th data-sort-field="updated_at">Updated</th>
|
|
<th data-sort-field="tags">Tags</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ($pastes as $paste): ?>
|
|
<tr>
|
|
<td><a href="<?= urlForPaste($paste); ?>"><?= pp_html_escape($paste->title) ?></a></td>
|
|
<td><?= pp_html_escape($paste->user->username) ?></td>
|
|
<td><?= pp_html_escape($paste->updated_at ?? $paste->created_at) ?></td>
|
|
<td><?= tagsToHtml($paste->tags) ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<th>Title</th>
|
|
<th>Author</th>
|
|
<th>Updated</th>
|
|
<th>Tags</th>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
<div class="loading_container is-hidden">
|
|
</div>
|
|
|
|
<div class="paginator">
|
|
<?= paginate($current_page, $per_page, $total_results) ?>
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
</main>
|