Use responsive top-area on project branches and tags pages
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
This commit is contained in:
parent
c5e6292e5f
commit
7d3dae2309
2 changed files with 30 additions and 31 deletions
|
@ -3,31 +3,30 @@
|
||||||
= render "projects/commits/head"
|
= render "projects/commits/head"
|
||||||
|
|
||||||
%div{ class: (container_class) }
|
%div{ class: (container_class) }
|
||||||
.row-content-block.second-block.content-component-block
|
.top-area
|
||||||
.pull-right
|
.nav-text
|
||||||
- if can? current_user, :push_code, @project
|
|
||||||
= link_to new_namespace_project_branch_path(@project.namespace, @project), class: 'btn btn-create' do
|
|
||||||
= icon('plus')
|
|
||||||
New branch
|
|
||||||
|
|
||||||
.dropdown.inline
|
|
||||||
%button.dropdown-toggle.btn{type: 'button', 'data-toggle' => 'dropdown'}
|
|
||||||
%span.light
|
|
||||||
- if @sort.present?
|
|
||||||
= @sort.humanize
|
|
||||||
- else
|
|
||||||
Name
|
|
||||||
%b.caret
|
|
||||||
%ul.dropdown-menu.dropdown-menu-align-right
|
|
||||||
%li
|
|
||||||
= link_to namespace_project_branches_path(sort: nil) do
|
|
||||||
Name
|
|
||||||
= link_to namespace_project_branches_path(sort: 'recently_updated') do
|
|
||||||
= sort_title_recently_updated
|
|
||||||
= link_to namespace_project_branches_path(sort: 'last_updated') do
|
|
||||||
= sort_title_oldest_updated
|
|
||||||
.oneline
|
|
||||||
Protected branches can be managed in project settings
|
Protected branches can be managed in project settings
|
||||||
|
|
||||||
|
- if can? current_user, :push_code, @project
|
||||||
|
.nav-controls
|
||||||
|
= link_to new_namespace_project_branch_path(@project.namespace, @project), class: 'btn btn-create' do
|
||||||
|
New branch
|
||||||
|
.dropdown.inline
|
||||||
|
%button.dropdown-toggle.btn{type: 'button', 'data-toggle' => 'dropdown'}
|
||||||
|
%span.light
|
||||||
|
- if @sort.present?
|
||||||
|
= @sort.humanize
|
||||||
|
- else
|
||||||
|
Name
|
||||||
|
%b.caret
|
||||||
|
%ul.dropdown-menu.dropdown-menu-align-right
|
||||||
|
%li
|
||||||
|
= link_to namespace_project_branches_path(sort: nil) do
|
||||||
|
Name
|
||||||
|
= link_to namespace_project_branches_path(sort: 'recently_updated') do
|
||||||
|
= sort_title_recently_updated
|
||||||
|
= link_to namespace_project_branches_path(sort: 'last_updated') do
|
||||||
|
= sort_title_oldest_updated
|
||||||
- unless @branches.empty?
|
- unless @branches.empty?
|
||||||
%ul.content-list.all-branches
|
%ul.content-list.all-branches
|
||||||
- @branches.each do |branch|
|
- @branches.each do |branch|
|
||||||
|
|
|
@ -3,15 +3,15 @@
|
||||||
= render "projects/commits/head"
|
= render "projects/commits/head"
|
||||||
|
|
||||||
%div{ class: (container_class) }
|
%div{ class: (container_class) }
|
||||||
.row-content-block.second-block.content-component-block
|
.top-area
|
||||||
- if can? current_user, :push_code, @project
|
.nav-text
|
||||||
.pull-right
|
|
||||||
= link_to new_namespace_project_tag_path(@project.namespace, @project), class: 'btn btn-create new-tag-btn' do
|
|
||||||
= icon('plus')
|
|
||||||
New tag
|
|
||||||
.oneline
|
|
||||||
Tags give the ability to mark specific points in history as being important
|
Tags give the ability to mark specific points in history as being important
|
||||||
|
|
||||||
|
- if can? current_user, :push_code, @project
|
||||||
|
.nav-controls
|
||||||
|
= link_to new_namespace_project_tag_path(@project.namespace, @project), class: 'btn btn-create new-tag-btn' do
|
||||||
|
New tag
|
||||||
|
|
||||||
.tags
|
.tags
|
||||||
- unless @tags.empty?
|
- unless @tags.empty?
|
||||||
%ul.content-list
|
%ul.content-list
|
||||||
|
|
Loading…
Reference in a new issue