8578f4011a
Use container helper instead of hard coded container ## What does this MR do? Add `container_class` helper class to fix layout bug ## What are the relevant issue numbers? #18333 ## Screenshots (if relevant) Fixed: ![Screen_Shot_2016-06-08_at_2.03.38_PM](/uploads/6e7575d711efb8eaf6ba641907b2d607/Screen_Shot_2016-06-08_at_2.03.38_PM.png) Fluid: ![Screen_Shot_2016-06-08_at_2.03.56_PM](/uploads/33d3f73781ca9ed129f853abfe9feb4b/Screen_Shot_2016-06-08_at_2.03.56_PM.png) See merge request !4543
46 lines
1.8 KiB
Text
46 lines
1.8 KiB
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")
|
|
|
|
.cover-block.groups-cover-block
|
|
%div{ class: (container_class) }
|
|
= link_to group_icon(@group), target: '_blank' do
|
|
= image_tag group_icon(@group), class: "avatar group-avatar s70"
|
|
.group-info
|
|
.cover-title
|
|
%h1
|
|
@#{@group.path}
|
|
%span.visibility-icon.has-tooltip{ data: { container: 'body' }, title: visibility_icon_description(@group) }
|
|
= visibility_level_icon(@group.visibility_level, fw: false)
|
|
|
|
- if @group.description.present?
|
|
.cover-desc.description
|
|
= markdown(@group.description, pipeline: :description)
|
|
|
|
%div{ class: container_class }
|
|
.top-area
|
|
%ul.nav-links
|
|
%li.active
|
|
= link_to "#projects", 'data-toggle' => 'tab' do
|
|
All Projects
|
|
- if @shared_projects.present?
|
|
%li
|
|
= link_to "#shared", 'data-toggle' => 'tab' do
|
|
Shared Projects
|
|
.nav-controls
|
|
= form_tag request.original_url, 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
|
|
|
|
.tab-content
|
|
.tab-pane.active#projects
|
|
= render "projects", projects: @projects
|
|
|
|
- if @shared_projects.present?
|
|
.tab-pane#shared
|
|
= render "shared_projects", projects: @shared_projects
|