d821d392/views/components/image-display.gohtml
1970-01-01 00:00:00 +00:00

14 lines
475 B
Plaintext

{{- /*gotype: crud-generator/html_components.ImageDisplay*/ -}}
{{define "imageDisplay"}}
<a href="{{.Value}}">
<img src="{{.Value}}?width{{.Width}}&{{.TimestampParam}}" alt="Column image"
class="crop-image">
</a>
<button class="cropImageButton {{template "buttonStyleClasses"}}"
data-hx-get="{{.CropUrl}}"
data-hx-push-url="false"
data-hx-target="#{{.Label}}-imageDisplay"
>Crop
</button>
{{end}}