summaryrefslogtreecommitdiff
path: root/app/views/admin/groups/_form.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/admin/groups/_form.html.haml')
-rw-r--r--app/views/admin/groups/_form.html.haml27
1 files changed, 0 insertions, 27 deletions
diff --git a/app/views/admin/groups/_form.html.haml b/app/views/admin/groups/_form.html.haml
deleted file mode 100644
index 9e7751830a4..00000000000
--- a/app/views/admin/groups/_form.html.haml
+++ /dev/null
@@ -1,27 +0,0 @@
-= 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-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"
-