2020-12-13 22:12:27 +03:00
<div class="dropzone-attachments">
2021-04-11 06:46:37 +03: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;">
2023-03-02 20:44:06 +03:00
<a target="_blank" rel="noopener noreferrer" href=" {{ .DownloadURL }} " title=' {{ $ .ctxData .locale .Tr "repo.issues.attachment.open_tab" .Name }} '>
2021-04-11 06:46:37 +03:00
{{ if FilenameIsImage .Name }}
{{ if not ( containGeneric $ .Content .UUID ) }}
{{ $ hasThumbnails = true }}
{{ end }}
2022-09-12 12:08:46 +03:00
{{ svg "octicon-file" }}
2021-04-11 06:46:37 +03:00
{{ else }}
2022-09-12 12:08:46 +03:00
{{ svg "octicon-desktop-download" }}
2021-04-11 06:46:37 +03: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 22:12:27 +03:00
2021-04-11 06:46:37 +03:00
{{ if $ hasThumbnails }}
<div class="ui clearing divider"></div>
2022-09-12 12:08:46 +03:00
<div class="ui small thumbnails">
2021-04-11 06:46:37 +03:00
{{ - range .Attachments - }}
{{ if FilenameIsImage .Name }}
{{ if not ( containGeneric $ .Content .UUID ) }}
<a target="_blank" rel="noopener noreferrer" href=" {{ .DownloadURL }} ">
2023-03-02 20:44:06 +03:00
<img src=" {{ .DownloadURL }} " title=' {{ $ .ctxData .locale .Tr "repo.issues.attachment.open_tab" .Name }} '>
2021-04-11 06:46:37 +03:00
</a>
{{ end }}
{{ end }}
{{ end - }}
</div>
{{ end }}
2020-12-13 22:12:27 +03:00
2020-04-21 07:15:41 +03:00
</div>