f39dbf3d3d
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
21 lines
864 B
Text
21 lines
864 B
Text
- @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")
|
|
|
|
= render 'groups/home_panel'
|
|
|
|
|
|
.groups-header{ class: container_class }
|
|
.top-area
|
|
= render 'groups/show_nav'
|
|
.nav-controls
|
|
= form_tag request.path, method: :get, class: 'project-filter-form', id: 'project-filter-form' do |f|
|
|
= 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
|