2019-10-15 17:49:32 +05:30
|
|
|
{{range .Attachments}}
|
2019-12-29 05:03:13 +05:30
|
|
|
<a target="_blank" rel="noopener noreferrer" href="{{.DownloadURL}}">
|
2019-10-15 17:49:32 +05:30
|
|
|
{{if FilenameIsImage .Name}}
|
2019-12-29 05:03:13 +05:30
|
|
|
<img class="ui image" src="{{.DownloadURL}}" title='{{$.ctx.i18n.Tr "repo.issues.attachment.open_tab" .Name}}'>
|
2019-10-15 17:49:32 +05:30
|
|
|
{{else}}
|
2020-02-11 22:32:41 +05:30
|
|
|
<span class="ui image" title='{{$.ctx.i18n.Tr "repo.issues.attachment.download" .Name}}'>{{svg "octicon-desktop-download" 16}}</span>
|
2019-10-15 17:49:32 +05:30
|
|
|
{{end}}
|
|
|
|
</a>
|
2019-12-29 05:03:13 +05:30
|
|
|
{{end}}
|