Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_breadcrumb.html.haml « blob « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c140eecd8c154cf289d2304c122329021d2d7032 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
- blame = local_assigns.fetch(:blame, false)
.nav-block
  .tree-ref-container
    .tree-ref-holder.gl-max-w-26
      #js-tree-ref-switcher{ data: { project_id: @project.id, project_root_path: project_path(@project), ref: current_ref, ref_type: @ref_type.to_s } }

    %ul.breadcrumb.repo-breadcrumb
      %li.breadcrumb-item
        = link_to project_tree_path(@project, @ref, ref_type: @ref_type) do
          = @project.path
      - path_breadcrumbs do |title, path|
        - title = truncate(title, length: 40)
        %li.breadcrumb-item
          - if path == @path
            = link_to project_blob_path(@project, tree_join(@ref, path), ref_type: @ref_type) do
              %strong= title
          - else
            = link_to title, project_tree_path(@project, tree_join(@ref, path), ref_type: @ref_type)

  .tree-controls.gl-children-ml-sm-3<
    = render 'projects/find_file_link'
    -# only show normal/blame view links for text files
    - if blob.readable_text?
      - if blame
        = link_button_to _('Normal view'), project_blob_path(@project, @id, ref_type: @ref_type)
      - else
        = link_button_to _('Blame'), project_blame_path(@project, @id, ref_type: @ref_type), class: 'js-blob-blame-link' unless blob.empty?

    = link_button_to _('History'), project_commits_path(@project, @id, ref_type: @ref_type)

    = link_button_to _('Permalink'), project_blob_path(@project, tree_join(@commit.sha, @path)),
        class: 'js-data-file-blob-permalink-url'