BigW Consortium Gitlab

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

3 4 5
- unless can?(current_user, :read_group, @group)
  - @disable_search_panel = true

6 7 8 9
= 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")

10
.cover-block
11 12 13
  .cover-controls
    - if @group && can?(current_user, :admin_group, @group)
      = link_to icon('pencil'), edit_group_path(@group), class: 'btn'
Stan Hu committed
14 15
    - if current_user
      = link_to icon('rss'), group_path(@group, { format: :atom, private_token: current_user.private_token }), title: "Feed", class: 'btn rss-btn'
16

17 18 19 20 21 22 23 24 25 26 27 28 29
  .avatar-holder
    = link_to group_icon(@group), target: '_blank' do
      = image_tag group_icon(@group), class: "avatar group-avatar s90"
  .cover-title
    = @group.name

  .cover-desc.username
    @#{@group.path}

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

30 31
- if can?(current_user, :read_group, @group)
  %div{ class: container_class }
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
    .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
            = icon('plus')
            New Project

50
    .tab-content
51
      .tab-pane.active#projects
52
        = render "projects", projects: @projects
53

54 55 56
      - if @shared_projects.present?
        .tab-pane#shared
          = render "shared_projects", projects: @shared_projects
57

58
- else
59
  %p.nav-links.no-top
60
    No projects to show