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

_matching_branch.html.haml « protected_branches « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8a5332ca5bb61146a26b73ec95cc7b2372ee1fd8 (plain)
1
2
3
4
5
6
7
8
9
%tr
  %td
    = link_to matching_branch.name, namespace_project_tree_path(@project.namespace, @project, matching_branch.name)
    - if @project.root_ref?(matching_branch.name)
      %span.label.label-info.prepend-left-5 default
  %td
    - commit = @project.commit(matching_branch.name)
    = link_to(commit.short_id, namespace_project_commit_path(@project.namespace, @project, commit.id), class: 'commit_short_id')
    = time_ago_with_tooltip(commit.committed_date)