2022-08-13 06:11:36 +00:00
|
|
|
{{define "title"}}Delete Photo{{end}}
|
|
|
|
{{define "content"}}
|
|
|
|
<div class="container">
|
|
|
|
<section class="hero is-info is-bold">
|
|
|
|
<div class="hero-body">
|
|
|
|
<div class="container">
|
|
|
|
<h1 class="title">
|
|
|
|
Delete Photo
|
|
|
|
</h1>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<div class="block p-4">
|
|
|
|
<div class="level">
|
|
|
|
<div class="level-item">
|
|
|
|
<div class="card" style="max-width: 512px">
|
|
|
|
<header class="card-header has-background-danger">
|
|
|
|
<p class="card-header-title has-text-light">
|
|
|
|
<span class="icon"><i class="fa fa-trash"></i></span>
|
|
|
|
Delete Photo
|
|
|
|
</p>
|
|
|
|
</header>
|
|
|
|
<div class="card-content">
|
|
|
|
<form method="POST" action="/photo/delete">
|
|
|
|
{{InputCSRF}}
|
|
|
|
<input type="hidden" name="id" value="{{.Photo.ID}}">
|
|
|
|
<input type="hidden" name="confirm" value="true">
|
|
|
|
|
|
|
|
<div class="image block">
|
2023-06-26 06:03:41 +00:00
|
|
|
<!-- GIF video? -->
|
|
|
|
{{if HasSuffix .Photo.Filename ".mp4"}}
|
|
|
|
<video autoplay loop controls>
|
|
|
|
<source src="{{PhotoURL .Photo.Filename}}" type="video/mp4">
|
|
|
|
</video>
|
|
|
|
{{else}}
|
2022-08-13 06:11:36 +00:00
|
|
|
<img src="{{PhotoURL .Photo.Filename}}">
|
2023-06-26 06:03:41 +00:00
|
|
|
{{end}}
|
2022-08-13 06:11:36 +00:00
|
|
|
</div>
|
|
|
|
<div class="block">
|
|
|
|
Are you sure you want to delete this photo?
|
|
|
|
</div>
|
|
|
|
<div class="block has-text-center">
|
|
|
|
<button type="submit" class="button is-danger">Delete Photo</button>
|
|
|
|
<button type="button" class="button" onclick="history.back()">Cancel</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
2023-06-26 06:03:41 +00:00
|
|
|
{{end}}
|