diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-02-06 10:16:26 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-02-06 10:16:26 +0200 |
commit | eb272227c30ab9ed428910ce13b153290dc38c85 (patch) | |
tree | 1710c689608ddaec5900e53664e4b11d20e5915e | |
parent | f99ee99f6530cfab85c67d01832eb76ba5f85fa3 (diff) | |
download | gitlab-ce-eb272227c30ab9ed428910ce13b153290dc38c85.tar.gz |
Add icons and better names to Project/Group nav
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-rw-r--r-- | app/views/groups/edit.html.haml | 6 | ||||
-rw-r--r-- | app/views/projects/_settings_nav.html.haml | 10 |
2 files changed, 10 insertions, 6 deletions
diff --git a/app/views/groups/edit.html.haml b/app/views/groups/edit.html.haml index e274a799674..f14fe923402 100644 --- a/app/views/groups/edit.html.haml +++ b/app/views/groups/edit.html.haml @@ -4,13 +4,15 @@ %li.active = link_to '#tab-edit', 'data-toggle' => 'tab' do %i.icon-edit - Edit Group + Group %li = link_to '#tab-projects', 'data-toggle' => 'tab' do %i.icon-folder-close Projects %li - = link_to 'Remove', '#tab-remove', 'data-toggle' => 'tab' + = link_to '#tab-remove', 'data-toggle' => 'tab' do + %i.icon-remove-sign + Remove .col-md-10 .tab-content diff --git a/app/views/projects/_settings_nav.html.haml b/app/views/projects/_settings_nav.html.haml index e4cfabc3100..a0caf8282f4 100644 --- a/app/views/projects/_settings_nav.html.haml +++ b/app/views/projects/_settings_nav.html.haml @@ -1,19 +1,21 @@ %ul.nav.nav-pills.nav-stacked.nav-stacked-menu.append-bottom-20 = nav_link(path: 'projects#edit') do = link_to edit_project_path(@project), class: "stat-tab tab " do - Edit Project + %i.icon-edit + Project = nav_link(controller: [:team_members, :teams]) do = link_to project_team_index_path(@project), class: "team-tab tab" do + %i.icon-group Members = nav_link(controller: :deploy_keys) do = link_to project_deploy_keys_path(@project) do - %span + %i.icon-key Deploy Keys = nav_link(controller: :hooks) do = link_to project_hooks_path(@project) do - %span + %i.icon-link Web Hooks = nav_link(controller: :services) do = link_to project_services_path(@project) do - %span + %i.icon-cogs Services |