mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-10 21:26:07 +10:00
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> Conflicts: db/schema.rb doc/README.md doc/install/installation.md doc/update/6.x-or-7.x-to-7.12.md doc/workflow/README.md
31 lines
1001 B
Plaintext
31 lines
1001 B
Plaintext
= form_for [:admin, @group], html: { class: "form-horizontal" } do |f|
|
|
- if @group.errors.any?
|
|
.alert.alert-danger
|
|
%span= @group.errors.full_messages.first
|
|
|
|
= render 'shared/group_form', f: f
|
|
|
|
.form-group.group-description-holder
|
|
= f.label :avatar, "Group avatar", class: 'control-label'
|
|
.col-sm-10
|
|
= render 'shared/choose_group_avatar_button', f: f
|
|
|
|
- if @group.new_record?
|
|
.form-group
|
|
.col-sm-offset-2.col-sm-10
|
|
.alert.alert-info
|
|
= render 'shared/group_tips'
|
|
.form-actions
|
|
= f.submit 'Create group', class: "btn btn-create"
|
|
= link_to 'Cancel', admin_groups_path, class: "btn btn-cancel"
|
|
|
|
- else
|
|
.form-actions
|
|
= f.submit 'Save changes', class: "btn btn-primary"
|
|
= link_to 'Cancel', admin_group_path(@group), class: "btn btn-cancel"
|
|
|
|
- if @group.persisted?
|
|
%h3.page-title Linked LDAP groups
|
|
= render 'ldap_group_links/form', group: @group
|
|
= render 'ldap_group_links/ldap_group_links', group: @group
|