2020-12-13 19:12:27 +00:00
<div class="dropzone-attachments">
2021-04-11 05:46:37 +02:00
{{ if .Attachments }}
<div class="ui clearing divider"></div>
{{ end }}
<div class="ui middle aligned padded grid">
{{ $ hasThumbnails : = false }}
{{ - range .Attachments - }}
<div class="twelve wide column" style="padding: 6px;">
2022-06-27 22:58:46 +02:00
<a target="_blank" rel="noopener noreferrer" href=" {{ .DownloadURL }} " title=' {{ $ .ctx .locale .Tr "repo.issues.attachment.open_tab" .Name }} '>
2021-04-11 05:46:37 +02:00
{{ if FilenameIsImage .Name }}
{{ if not ( containGeneric $ .Content .UUID ) }}
{{ $ hasThumbnails = true }}
{{ end }}
2022-09-12 11:08:46 +02:00
{{ svg "octicon-file" }}
2021-04-11 05:46:37 +02:00
{{ else }}
2022-09-12 11:08:46 +02:00
{{ svg "octicon-desktop-download" }}
2021-04-11 05:46:37 +02:00
{{ end }}
<span><strong> {{ .Name }} </strong></span>
</a>
</div>
<div class="four wide column" style="padding: 0px;">
<span class="ui text grey right"> {{ .Size | FileSize }} </span>
</div>
{{ end - }}
</div>
2020-12-13 19:12:27 +00:00
2021-04-11 05:46:37 +02:00
{{ if $ hasThumbnails }}
<div class="ui clearing divider"></div>
2022-09-12 11:08:46 +02:00
<div class="ui small thumbnails">
2021-04-11 05:46:37 +02:00
{{ - range .Attachments - }}
{{ if FilenameIsImage .Name }}
{{ if not ( containGeneric $ .Content .UUID ) }}
<a target="_blank" rel="noopener noreferrer" href=" {{ .DownloadURL }} ">
2022-09-12 11:08:46 +02:00
<img src=" {{ .DownloadURL }} " title=' {{ $ .ctx .locale .Tr "repo.issues.attachment.open_tab" .Name }} '>
2021-04-11 05:46:37 +02:00
</a>
{{ end }}
{{ end }}
{{ end - }}
</div>
{{ end }}
2020-12-13 19:12:27 +00:00
2020-04-21 00:15:41 -04:00
</div>