gitlab-org--gitlab-foss/app/views/projects/blob/show.html.haml

20 lines
576 B
Text
Raw Normal View History

2016-06-23 18:25:14 -04:00
- @no_container = true
2015-04-30 13:06:18 -04:00
- page_title @blob.path, @ref
2016-06-23 18:25:14 -04:00
= render "projects/commits/head"
2017-04-13 13:05:09 -04:00
- content_for :page_specific_javascripts do
= page_specific_javascript_bundle_tag('blob')
= render 'projects/last_push'
%div{ class: container_class }
2016-12-23 04:37:12 -05:00
#tree-holder.tree-holder
2016-06-23 18:25:14 -04:00
= render 'blob', blob: @blob
- if can_modify_blob?(@blob)
2016-06-23 18:25:14 -04:00
= render 'projects/blob/remove'
2015-09-17 02:34:30 -04:00
2016-06-23 18:25:14 -04:00
- title = "Replace #{@blob.name}"
= render 'projects/blob/upload', title: title, placeholder: title, button_title: 'Replace file', form_path: project_update_blob_path(@project, @id), method: :put