debian-mirror-gitlab/app/views/groups/show.html.haml

51 lines
2 KiB
Text
Raw Normal View History

- @no_container = true
2015-09-11 14:41:01 +05:30
= 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")
2016-06-02 11:05:42 +05:30
.cover-block.groups-cover-block
2016-08-24 12:49:21 +05:30
%div{ class: container_class }
2016-09-13 17:45:13 +05:30
= image_tag group_icon(@group), class: "avatar group-avatar s70 avatar-tile"
2016-06-02 11:05:42 +05:30
.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)
2016-08-24 12:49:21 +05:30
.group-right-buttons.btn-group
- if current_user
.pull-left.append-right-10= render 'shared/members/access_request_buttons', source: @group
= render 'shared/notifications/button', notification_setting: @notification_setting
2016-06-02 11:05:42 +05:30
- if @group.description.present?
.cover-desc.description
2016-11-03 12:29:30 +05:30
= markdown_field(@group, :description)
2016-06-02 11:05:42 +05:30
2016-09-29 09:46:39 +05:30
%div.groups-header{ class: container_class }
2016-06-02 11:05:42 +05:30
.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
2016-08-24 12:49:21 +05:30
= form_tag request.path, method: :get, class: 'project-filter-form', id: 'project-filter-form' do |f|
2016-06-02 11:05:42 +05:30
= 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