BigW Consortium Gitlab

show.html.haml 1.77 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
.cover-block.groups-cover-block
8
  %div{ class: (container_class) }
9
    = link_to group_icon(@group), target: '_blank' do
10
      = image_tag group_icon(@group), class: "avatar group-avatar s70"
11 12 13 14 15 16
    .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)
17

18 19 20
      - if @group.description.present?
        .cover-desc.description
          = markdown(@group.description, pipeline: :description)
21

22 23 24 25 26 27
%div{ class: container_class }
  .top-area
    %ul.nav-links
      %li.active
        = link_to "#projects", 'data-toggle' => 'tab' do
          All Projects
28
      - if @shared_projects.present?
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
        %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