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

_file_navigation.html.haml « artifacts « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e9109451a69071e5b63eaf6a73b5941021d4d84d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
.nav-block
  %ul.breadcrumb.repo-breadcrumb
    %li.breadcrumb-item
      = link_to _('Artifacts'), browse_project_job_artifacts_path(project, build)
    - path_breadcrumbs do |title, breadcrumb|
      - title = truncate(title, length: 40)
      %li.breadcrumb-item
        - if path == breadcrumb
          = link_to file_project_job_artifacts_path(project, build, breadcrumb) do
            %strong= title
        - else
          = link_to title, browse_project_job_artifacts_path(project, build, breadcrumb)