diff options
author | Bob Van Landuyt <bob@vanlanduyt.co> | 2017-09-05 10:03:43 +0200 |
---|---|---|
committer | Bob Van Landuyt <bob@vanlanduyt.co> | 2017-10-04 22:46:49 +0200 |
commit | 376a8c66c1ca8ee2a95255d21c9d55ce006ab655 (patch) | |
tree | d089b7830874490529380509caa830266c1d13e4 /app/views | |
parent | 2eac1537ad907f2f7e628788cf980cb7e48d3f56 (diff) | |
download | gitlab-ce-376a8c66c1ca8ee2a95255d21c9d55ce006ab655.tar.gz |
Remove the subgroups path on a group
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/groups/subgroups.html.haml | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/app/views/groups/subgroups.html.haml b/app/views/groups/subgroups.html.haml deleted file mode 100644 index 869b3b243c6..00000000000 --- a/app/views/groups/subgroups.html.haml +++ /dev/null @@ -1,21 +0,0 @@ -- breadcrumb_title "Details" -- @no_container = true - -= render 'groups/home_panel' - -.groups-header{ class: container_class } - .top-area - = render 'groups/show_nav' - .nav-controls - = form_tag request.path, method: :get do |f| - = search_field_tag :filter_groups, params[:filter_groups], placeholder: 'Filter by name', class: 'form-control', spellcheck: false - - if can?(current_user, :create_subgroup, @group) - = link_to new_group_path(parent_id: @group.id), class: 'btn btn-new pull-right' do - New Subgroup - - - if @nested_groups.present? - %ul.content-list - = render partial: 'shared/groups/group', collection: @nested_groups, locals: { full_name: false } - - else - .nothing-here-block - There are no subgroups to show. |