gitlab-org--gitlab-foss/app/views/groups/show.html.haml

23 lines
887 B
Text
Raw Normal View History

- @no_container = true
= content_for :meta_tags do
- if current_user
= auto_discovery_link_tag(:atom, group_url(@group, format: :atom, private_token: current_user.private_token), title: "#{@group.name} activity")
2017-02-22 17:42:11 -05:00
= render 'groups/head'
= render 'groups/home_panel'
2016-12-23 04:37:12 -05:00
.groups-header{ class: container_class }
2016-03-20 16:03:53 -04:00
.top-area
= render 'groups/show_nav'
2016-03-20 16:03:53 -04:00
.nav-controls
2016-06-17 13:17:06 -04:00
= form_tag request.path, method: :get, class: 'project-filter-form', id: 'project-filter-form' do |f|
2016-03-20 16:03:53 -04:00
= search_field_tag :filter_projects, nil, placeholder: 'Filter by name', class: 'projects-list-filter form-control', spellcheck: false
= render 'shared/projects/dropdown'
- if can? current_user, :create_projects, @group
= link_to new_project_path(namespace_id: @group.id), class: 'btn btn-new pull-right' do
New Project
= render "projects", projects: @projects