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/projects/no_repo.html.haml')
-rw-r--r--app/views/projects/no_repo.html.haml22
1 files changed, 0 insertions, 22 deletions
diff --git a/app/views/projects/no_repo.html.haml b/app/views/projects/no_repo.html.haml
deleted file mode 100644
index 720957e8336..00000000000
--- a/app/views/projects/no_repo.html.haml
+++ /dev/null
@@ -1,22 +0,0 @@
-%h2
- %i.fa.fa-warning
- No repository
-
-%p.slead
- The repository for this project does not exist.
- %br
- This means you can not push code until you create an empty repository or import existing one.
-%hr
-
-.no-repo-actions
- = link_to namespace_project_repository_path(@project.namespace, @project), method: :post, class: 'btn btn-primary' do
- Create empty bare repository
-
- %strong.prepend-left-10.append-right-10 or
-
- = link_to new_namespace_project_import_path(@project.namespace, @project), class: 'btn' do
- Import repository
-
-- if can? current_user, :remove_project, @project
- .prepend-top-20
- = link_to 'Remove project', project_path(@project), data: { confirm: remove_project_message(@project)}, method: :delete, class: "btn btn-remove pull-right"