debian-mirror-gitlab/app/views/admin/groups/_form.html.haml

26 lines
826 B
Text
Raw Normal View History

2014-09-02 18:07:02 +05:30
= form_for [:admin, @group], html: { class: "form-horizontal" } do |f|
- if @group.errors.any?
.alert.alert-danger
%span= @group.errors.full_messages.first
2015-04-26 12:48:37 +05:30
= render 'shared/group_form', f: f
2014-09-02 18:07:02 +05:30
.form-group.group-description-holder
= f.label :avatar, "Group avatar", class: 'control-label'
.col-sm-10
2015-04-26 12:48:37 +05:30
= render 'shared/choose_group_avatar_button', f: f
2014-09-02 18:07:02 +05:30
- if @group.new_record?
.form-group
2015-09-11 14:41:01 +05:30
.col-sm-offset-2.col-sm-10
2015-04-26 12:48:37 +05:30
.alert.alert-info
= render 'shared/group_tips'
2014-09-02 18:07:02 +05:30
.form-actions
= f.submit 'Create group', class: "btn btn-create"
= link_to 'Cancel', admin_groups_path, class: "btn btn-cancel"
- else
.form-actions
2016-04-02 18:10:28 +05:30
= f.submit 'Save changes', class: "btn btn-save"
2014-09-02 18:07:02 +05:30
= link_to 'Cancel', admin_group_path(@group), class: "btn btn-cancel"