summaryrefslogtreecommitdiff
path: root/app/views/projects/blob/show.html.haml
blob: 8d77bdbe382daf000c14d81651d345ab6326ee28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
- @no_container = true
- page_title @blob.path, @ref
= render "projects/commits/head"

%div{ class: (container_class) }
  = render 'projects/last_push'

  %div#tree-holder.tree-holder
    = render 'blob', blob: @blob

  - if can_edit_blob?(@blob)
    = render 'projects/blob/remove'

    - title = "Replace #{@blob.name}"
    = render 'projects/blob/upload', title: title, placeholder: title, button_title: 'Replace file', form_path: namespace_project_update_blob_path(@project.namespace, @project, @id), method: :put