FreePad/templates/pages/admin_view.html

94 lines
2.6 KiB
HTML
Raw Normal View History

2022-06-03 22:56:25 +03:00
{{ template "inc/header.html" .}}
<style>
.pad-instance {
display: flex;
flex-flow: row;
justify-content: space-between;
align-items: center;
}
#pad-list {
max-height: 30rem;
overflow-x: hidden;
overflow-y: auto;
}
.pad-name {
max-width: 30%;
overflow: hidden;
}
</style>
<body>
<main id="main-card" class="container rounded mt-5 shadow-sm">
<div class="p-3">
<a href="/" class="logo-container w-100 d-flex mb-4">
<img src="/static/img/logo_transparent.png" alt="Logo" style="max-width: 50%; margin: 0 auto;" class="mx-auto">
</a>
<div class="form-group my-4 border-top p-3 border">
<div class="pad-instance my-2 border-bottom">
<div class="pad-name col-5">
Pad Name
</div>
2022-06-03 23:15:20 +03:00
<div class="pad-last-view col-1">
Views
</div>
<div class="pad-last-modified col-4">
2022-06-03 22:56:25 +03:00
Create Date
</div>
<div class="col-2">
Actions
</div>
</div>
<div id="pad-list" >
{{ range $indx, $element := .padList }}
<div class="pad-instance my-2">
<div class="pad-name col-5">
<a href="/{{ $element.Name }}">
{{ $element.Name }}
</a>
</div>
2022-06-03 23:15:20 +03:00
<div class="pad-last-view col-1">
{{ $element.Views }}
</div>
<div class="pad-last-modified col-4">
2022-06-03 22:56:25 +03:00
{{ $element.LastModified }}
</div>
<div class="col-2">
2022-06-03 23:15:20 +03:00
<div onclick="doDelete({{ $element.Name }})" class="btn btn-danger">
2022-06-03 22:56:25 +03:00
Delete
2022-06-03 22:59:44 +03:00
</div>
2022-06-03 22:56:25 +03:00
</div>
</div>
{{ end }}
</div>
</div>
</div>
</main>
{{ template "inc/theme-toggle.html" .}}
</body>
2022-06-03 22:59:44 +03:00
<script>
function doDelete(id) {
// Confirm deletion
if ( confirm("Confirm pad deletion?") ) {
// Do delete
window.location.href = `/admin/delete/${id}`;
}
}
</script>
2022-06-03 22:56:25 +03:00
{{ template "inc/footer.html" .}}