add permission messages to project edit
This commit is contained in:
parent
fb1c85061e
commit
e68955b4fc
1 changed files with 10 additions and 6 deletions
|
@ -29,11 +29,6 @@
|
||||||
= f.text_field :name, placeholder: "Example Project", class: "span5"
|
= f.text_field :name, placeholder: "Example Project", class: "span5"
|
||||||
|
|
||||||
|
|
||||||
- unless @repository.heads.empty?
|
|
||||||
.clearfix
|
|
||||||
= f.label :default_branch, "Default Branch"
|
|
||||||
.input= f.select(:default_branch, @repository.heads.map(&:name), {}, style: "width:210px;")
|
|
||||||
|
|
||||||
.clearfix
|
.clearfix
|
||||||
= f.label :description do
|
= f.label :description do
|
||||||
Project description
|
Project description
|
||||||
|
@ -41,6 +36,11 @@
|
||||||
.input
|
.input
|
||||||
= f.text_area :description, placeholder: "awesome project", class: "span5", rows: 3, maxlength: 250
|
= f.text_area :description, placeholder: "awesome project", class: "span5", rows: 3, maxlength: 250
|
||||||
|
|
||||||
|
- unless @repository.heads.empty?
|
||||||
|
.clearfix
|
||||||
|
= f.label :default_branch, "Default Branch"
|
||||||
|
.input= f.select(:default_branch, @repository.heads.map(&:name), {}, style: "width:210px;")
|
||||||
|
|
||||||
|
|
||||||
- if can?(current_user, :change_public_mode, @project)
|
- if can?(current_user, :change_public_mode, @project)
|
||||||
%fieldset.public-mode
|
%fieldset.public-mode
|
||||||
|
@ -104,7 +104,7 @@
|
||||||
= f.submit 'Save', class: "btn btn-save"
|
= f.submit 'Save', class: "btn btn-save"
|
||||||
|
|
||||||
.tab-pane#tab-transfer
|
.tab-pane#tab-transfer
|
||||||
- if can? current_user, :change_namespace, @project
|
- if can?(current_user, :change_namespace, @project)
|
||||||
.ui-box.ui-box-danger
|
.ui-box.ui-box-danger
|
||||||
%h5.title Transfer project
|
%h5.title Transfer project
|
||||||
.form-holder
|
.form-holder
|
||||||
|
@ -121,6 +121,8 @@
|
||||||
%li You will need to update your local repositories to point to the new location.
|
%li You will need to update your local repositories to point to the new location.
|
||||||
.form-actions
|
.form-actions
|
||||||
= f.submit 'Transfer', class: "btn btn-remove"
|
= f.submit 'Transfer', class: "btn btn-remove"
|
||||||
|
- else
|
||||||
|
%p.nothing_here_message Only project owner can transfer a project
|
||||||
|
|
||||||
.tab-pane#tab-remove
|
.tab-pane#tab-remove
|
||||||
- if can?(current_user, :remove_project, @project)
|
- if can?(current_user, :remove_project, @project)
|
||||||
|
@ -133,3 +135,5 @@
|
||||||
%strong Removed project can not be restored!
|
%strong Removed project can not be restored!
|
||||||
|
|
||||||
= link_to 'Remove project', @project, confirm: 'Removed project can not be restored! Are you sure?', method: :delete, class: "btn btn-remove btn-small"
|
= link_to 'Remove project', @project, confirm: 'Removed project can not be restored! Are you sure?', method: :delete, class: "btn btn-remove btn-small"
|
||||||
|
- else
|
||||||
|
%p.nothing_here_message Only project owner can remove a project
|
||||||
|
|
Loading…
Add table
Reference in a new issue