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

.d-flex.justify-content-between
  - 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}"