You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

attachments.tmpl 426B

123456789
  1. {{range .Attachments}}
  2. <a target="_blank" rel="noopener noreferrer" href="{{.DownloadURL}}">
  3. {{if FilenameIsImage .Name}}
  4. <img class="ui image" src="{{.DownloadURL}}" title='{{$.ctx.i18n.Tr "repo.issues.attachment.open_tab" .Name}}'>
  5. {{else}}
  6. <span class="ui image" title='{{$.ctx.i18n.Tr "repo.issues.attachment.download" .Name}}'>{{svg "octicon-desktop-download" 16}}</span>
  7. {{end}}
  8. </a>
  9. {{end}}