14 lines
475 B
Plaintext
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}}
|