_blob_actions.html.haml 694 字节
Newer Older
1
.btn-group.tree-btn-group
2 3
  -# only show edit link for text files
  - if @tree.text?
4
    = link_to "edit", edit_project_tree_path(@project, @id), class: "btn very_small", disabled: !allowed_tree_edit?
5
  = link_to "raw", project_blob_path(@project, @id), class: "btn very_small", target: "_blank"
6 7 8 9 10 11
  -# only show normal/blame view links for text files
  - if @tree.text?
    - if current_page? project_blame_path(@project, @id)
      = link_to "normal view", project_tree_path(@project, @id), class: "btn very_small"
    - else
      = link_to "blame", project_blame_path(@project, @id), class: "btn very_small"
12
  = link_to "history", project_commits_path(@project, @id), class: "btn very_small"