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 583B

123456789101112131415
  1. {{- range .Attachments -}}
  2. <div class="twelve wide column" style="padding: 6px;">
  3. <a target="_blank" rel="noopener noreferrer" href="{{.DownloadURL}}" title='{{$.ctx.i18n.Tr "repo.issues.attachment.open_tab" .Name}}'>
  4. {{if FilenameIsImage .Name}}
  5. <span class="ui image">{{svg "octicon-file" 16}}</span>
  6. {{else}}
  7. <span class="ui image">{{svg "octicon-desktop-download" 16}}</span>
  8. {{end}}
  9. <span><strong>{{.Name}}</strong></span>
  10. </a>
  11. </div>
  12. <div class="four wide column" style="padding: 0px;">
  13. <span class="ui text grey right">{{.Size | FileSize}}</span>
  14. </div>
  15. {{end -}}