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
path: root/app/views
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-05-31 15:21:13 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-05-31 15:21:13 +0400
commit8beb7c886e3bb9706bfa6760325453e749b84231 (patch)
tree5ed8dfe220780a4d42b04b32d159862f4fbfc1d9 /app/views
parentc2c43e6aa1f9dc43d16f3d3c03ef247f73156db2 (diff)
Different UI colors for archive project and remove project
Since remove is more danger in compare to archive it good to have them in different colors Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/views')
-rw-r--r--app/views/projects/edit.html.haml42
1 files changed, 21 insertions, 21 deletions
diff --git a/app/views/projects/edit.html.haml b/app/views/projects/edit.html.haml
index 43775026f71..59dcf3a6ff0 100644
--- a/app/views/projects/edit.html.haml
+++ b/app/views/projects/edit.html.haml
@@ -106,7 +106,7 @@
.js-toggle-content.hide
- if can? current_user, :archive_project, @project
- .panel.panel-default.panel.panel-danger
+ .panel.panel-default.panel.panel-warning
.panel-heading
- if @project.archived?
Unarchive project
@@ -132,10 +132,29 @@
%strong Archived projects cannot be committed to!
= link_to 'Archive', archive_project_path(@project),
data: { confirm: "Are you sure that you want to archive this project?\nAn archived project cannot be committed to." },
- method: :post, class: "btn btn-remove"
+ method: :post, class: "btn btn-warning"
- else
.nothing-here-block Only the project owner can archive a project
+ .panel.panel-default.panel.panel-warning
+ .panel-heading Rename repository
+ .errors-holder
+ .panel-body
+ = form_for(@project, html: { class: 'form-horizontal' }) do |f|
+ .form-group
+ = f.label :path, class: 'control-label' do
+ %span Path
+ .col-sm-9
+ .form-group
+ .input-group
+ = f.text_field :path, class: 'form-control'
+ %span.input-group-addon .git
+ %ul
+ %li Be careful. Renaming a project's repository can have unintended side effects.
+ %li You will need to update your local repositories to point to the new location.
+ .form-actions
+ = f.submit 'Rename', class: "btn btn-warning"
+
- if can?(current_user, :change_namespace, @project)
.panel.panel-default.panel.panel-danger
.panel-heading Transfer project
@@ -157,25 +176,6 @@
- else
.nothing-here-block Only the project owner can transfer a project
- .panel.panel-default.panel.panel-danger
- .panel-heading Rename repository
- .errors-holder
- .panel-body
- = form_for(@project, html: { class: 'form-horizontal' }) do |f|
- .form-group
- = f.label :path, class: 'control-label' do
- %span Path
- .col-sm-9
- .form-group
- .input-group
- = f.text_field :path, class: 'form-control'
- %span.input-group-addon .git
- %ul
- %li Be careful. Renaming a project's repository can have unintended side effects.
- %li You will need to update your local repositories to point to the new location.
- .form-actions
- = f.submit 'Rename', class: "btn btn-remove"
-
- if can?(current_user, :remove_project, @project)
.panel.panel-default.panel.panel-danger
.panel-heading Remove project