aboutsummaryrefslogtreecommitdiffstats
path: root/templates/repo/issue/view_content/attachments.tmpl
blob: e2d7d1b9de67923f82b287c8c99d51df57128934 (plain)
1
2
3
4
5
6
7
8
9
{{range .Attachments}}
  <a target="_blank" rel="noopener noreferrer" href="{{AppSubUrl}}/attachments/{{.UUID}}">
    {{if FilenameIsImage .Name}}
      <img class="ui image" src="{{AppSubUrl}}/attachments/{{.UUID}}" title='{{$.ctx.i18n.Tr "repo.issues.attachment.open_tab" .Name}}'>
    {{else}}
      <span class="ui image octicon octicon-desktop-download" title='{{$.ctx.i18n.Tr "repo.issues.attachment.download" .Name}}'></span>
    {{end}}
  </a>
{{end}}