weiro/views/uploads/show.html
Leon Mika 199ff9feb9 More changes to uploads:
- Have got upload images appearing in the post list
- Allowed for deleting uploads
- Allowed for seeing the upload progress
- Fixed the setting of upload properties like the MIME type
- Removed the stripe exif logic with just re-encoding PNGs and JPEGs by loading them and saving them
2026-03-04 22:33:39 +11:00

14 lines
651 B
HTML

<main class="container show-upload">
<div class="my-4 d-flex justify-content-between align-items-baseline"
data-controller="show-upload"
data-show-upload-copy-snippet-value="{{ .upload.CopyTemplate }}"
data-show-upload-site-id-value="{{ .upload.Upload.SiteID }}"
data-show-upload-upload-id-value="{{ .upload.Upload.ID }}">
<button class="btn btn-outline-dark" data-action="show-upload#copy">Copy HTML</button>
<button class="btn btn-danger" data-action="show-upload#delete">Delete</button>
</div>
<figure>
<img src="{{ .upload.URL }}" alt="{{ .upload.Upload.Alt }}" class="img-fluid">
</figure>
</main>