summaryrefslogtreecommitdiff
path: root/app/views/projects/buttons/_download_links.html.haml
blob: d344167a6c54fea85e8201b9342b0731ec599927 (plain)
1
2
3
4
5
- formats = [['zip', 'btn-primary'], ['tar.gz'], ['tar.bz2'], ['tar']]

.btn-group.ml-0.w-100
  - formats.each do |(fmt, extra_class)|
    = link_to fmt, project_archive_path(project, id: tree_join(ref, archive_prefix), path: path, format: fmt), rel: 'nofollow', download: '', class: "btn btn-xs #{extra_class}"