Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/groups/projects.html.haml')
-rw-r--r--app/views/groups/projects.html.haml25
1 files changed, 0 insertions, 25 deletions
diff --git a/app/views/groups/projects.html.haml b/app/views/groups/projects.html.haml
deleted file mode 100644
index 0d547984cc9..00000000000
--- a/app/views/groups/projects.html.haml
+++ /dev/null
@@ -1,25 +0,0 @@
-.panel.panel-default
- .panel-heading
- %strong= @group.name
- projects:
- - if can? current_user, :admin_group, @group
- .panel-head-actions
- = link_to new_project_path(namespace_id: @group.id), class: "btn btn-sm btn-success" do
- %i.fa.fa-plus
- New Project
- %ul.well-list
- - @projects.each do |project|
- %li
- .list-item-name
- = visibility_level_icon(project.visibility_level)
- %strong= link_to project.name_with_namespace, project
- %span.label.label-gray
- = repository_size(project)
- .pull-right
- = link_to 'Members', namespace_project_project_members_path(project.namespace, project), id: "edit_#{dom_id(project)}", class: "btn btn-sm"
- = link_to 'Edit', edit_namespace_project_path(project.namespace, project), id: "edit_#{dom_id(project)}", class: "btn btn-sm"
- = link_to 'Remove', project, data: { confirm: remove_project_message(project)}, method: :delete, class: "btn btn-sm btn-remove"
- - if @projects.blank?
- .nothing-here-block This group has no projects yet
-
-= paginate @projects, theme: "gitlab"