BigW Consortium Gitlab

show.html.haml 2.17 KB
Newer Older
1 2
- @no_container = true

3 4 5 6
= 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")

7
.group-home-panel.text-center
8
  %div{ class: container_class }
9
    .avatar-container.s70.group-avatar
10
      = image_tag group_icon(@group), class: "avatar s70 avatar-tile"
11 12 13 14
    %h1.group-title
      @#{@group.path}
      %span.visibility-icon.has-tooltip{ data: { container: 'body' }, title: visibility_icon_description(@group) }
        = visibility_level_icon(@group.visibility_level, fw: false)
15

16 17 18
    - if @group.description.present?
      .group-home-desc
        = markdown_field(@group, :description)
19

20 21 22 23
    - if current_user
      .group-buttons
        = render 'shared/members/access_request_buttons', source: @group
        = render 'shared/notifications/button', notification_setting: @notification_setting
24

25
.groups-header{ class: container_class }
26 27 28 29 30
  .top-area
    %ul.nav-links
      %li.active
        = link_to "#projects", 'data-toggle' => 'tab' do
          All Projects
31
      - if @shared_projects.present?
32 33 34
        %li
          = link_to "#shared", 'data-toggle' => 'tab' do
            Shared Projects
35 36 37
      - if @nested_groups.present?
        %li
          = link_to "#groups", 'data-toggle' => 'tab' do
38
            Subgroups
39
    .nav-controls
40
      = form_tag request.path, method: :get, class: 'project-filter-form', id: 'project-filter-form' do |f|
41 42 43 44 45 46 47 48 49 50 51 52 53
        = 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
54 55 56 57

    - if @nested_groups.present?
      .tab-pane#groups
        %ul.content-list
58
          = render partial: 'shared/groups/group', collection: @nested_groups