Use form-actions where appropriate
This commit is contained in:
parent
ffabf1df50
commit
b04c5b0695
6 changed files with 23 additions and 18 deletions
|
@ -44,4 +44,5 @@
|
|||
%br
|
||||
%strong Removed group can not be restored!
|
||||
|
||||
.form-actions
|
||||
= link_to 'Remove Group', @group, data: {confirm: 'Removed group can not be restored! Are you sure?'}, method: :delete, class: "btn btn-remove"
|
||||
|
|
|
@ -23,10 +23,13 @@
|
|||
%p.cgray
|
||||
- if current_user.private_token
|
||||
= text_field_tag "token", current_user.private_token, class: "form-control"
|
||||
%div
|
||||
= f.submit 'Reset private token', data: { confirm: "Are you sure?" }, class: "btn btn-default btn-build-token"
|
||||
- else
|
||||
%span You don`t have one yet. Click generate to fix it.
|
||||
|
||||
.form-actions
|
||||
- if current_user.private_token
|
||||
= f.submit 'Reset private token', data: { confirm: "Are you sure?" }, class: "btn btn-default btn-build-token"
|
||||
- else
|
||||
= f.submit 'Generate', class: "btn btn-default btn-build-token"
|
||||
|
||||
- unless current_user.ldap_user?
|
||||
|
@ -54,7 +57,8 @@
|
|||
%p
|
||||
Each time you log in you’ll be required to provide your username and
|
||||
password as usual, plus a randomly-generated code from your phone.
|
||||
%div
|
||||
|
||||
.form-actions
|
||||
= link_to 'Enable Two-factor Authentication', new_profile_two_factor_auth_path, class: 'btn btn-success'
|
||||
|
||||
- if button_based_providers.any?
|
||||
|
@ -89,7 +93,7 @@
|
|||
Saving new username
|
||||
%p.light
|
||||
= user_url(@user)
|
||||
%div
|
||||
.form-actions
|
||||
= f.submit 'Save username', class: "btn btn-warning"
|
||||
|
||||
- if signup_enabled?
|
||||
|
@ -104,6 +108,7 @@
|
|||
- rp = current_user.personal_projects.count
|
||||
- unless rp.zero?
|
||||
%li #{pluralize rp, 'personal project'} will be removed and cannot be restored
|
||||
.form-actions
|
||||
= link_to 'Delete account', user_registration_path, data: { confirm: "REMOVE #{current_user.name}? Are you sure?" }, method: :delete, class: "btn btn-remove"
|
||||
- else
|
||||
- if @user.solo_owned_groups.present?
|
||||
|
|
|
@ -13,9 +13,8 @@
|
|||
|
||||
= render 'shared/new_commit_form', placeholder: "Add new directory"
|
||||
|
||||
.form-group
|
||||
.col-sm-offset-2.col-sm-10
|
||||
= submit_tag "Create directory", class: 'btn btn-primary btn-create'
|
||||
.form-actions
|
||||
= submit_tag "Create directory", class: 'btn btn-create'
|
||||
= link_to "Cancel", '#', class: "btn btn-cancel", "data-dismiss" => "modal"
|
||||
|
||||
:javascript
|
||||
|
|
|
@ -16,9 +16,8 @@
|
|||
|
||||
= render 'shared/new_commit_form', placeholder: placeholder
|
||||
|
||||
.form-group
|
||||
.col-sm-offset-2.col-sm-10
|
||||
= button_tag button_title, class: 'btn btn-small btn-primary btn-upload-file', id: 'submit-all'
|
||||
.form-actions
|
||||
= button_tag button_title, class: 'btn btn-small btn-create btn-upload-file', id: 'submit-all'
|
||||
= link_to "Cancel", '#', class: "btn btn-cancel", "data-dismiss" => "modal"
|
||||
|
||||
:javascript
|
||||
|
|
|
@ -213,6 +213,7 @@
|
|||
#{link_to @project.forked_from_project.name_with_namespace, project_path(@project.forked_from_project)}.
|
||||
%br
|
||||
%strong Once removed, the fork relationship cannot be restored and you will no longer be able to send merge requests to the source.
|
||||
.form-actions
|
||||
= button_to 'Remove fork relationship', '#', class: "btn btn-remove js-confirm-danger", data: { "confirm-danger-message" => remove_fork_project_message(@project) }
|
||||
- else
|
||||
.nothing-here-block Only the project owner can remove the fork relationship.
|
||||
|
@ -226,7 +227,7 @@
|
|||
Removing the project will delete its repository and all related resources including issues, merge requests etc.
|
||||
%br
|
||||
%strong Removed projects cannot be restored!
|
||||
|
||||
.form-actions
|
||||
= button_to 'Remove project', '#', class: "btn btn-remove js-confirm-danger", data: { "confirm-danger-message" => remove_project_message(@project) }
|
||||
- else
|
||||
.nothing-here-block Only the project owner can remove a project.
|
||||
|
|
|
@ -19,5 +19,5 @@
|
|||
|
||||
.form-group
|
||||
= text_field_tag 'confirm_name_input', '', class: 'form-control js-confirm-danger-input'
|
||||
.form-group
|
||||
.form-actions
|
||||
= submit_tag 'Confirm', class: "btn btn-danger js-confirm-danger-submit"
|
||||
|
|
Loading…
Reference in a new issue