summaryrefslogtreecommitdiff
path: root/app/views/admin/groups/_form.html.haml
blob: c56863ce2748aa58aad10c207cc5ebfbc056e892 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
= form_for [:admin, @group], html: { class: "form-horizontal" } do |f|
  - if @group.errors.any?
    .alert.alert-danger
      %span= @group.errors.full_messages.first
  .form-group.group_name_holder
    = f.label :name, class: 'control-label' do
      Group name
    .col-sm-10
      = f.text_field :name, placeholder: "Example Group", class: "form-control"

  .form-group.group-description-holder
    = f.label :description, "Details", class: 'control-label'
    .col-sm-10
      = f.text_area :description, maxlength: 250, class: "form-control js-gfm-input", rows: 4

  .form-group.group-description-holder
    = f.label :avatar, "Group avatar", class: 'control-label'
    .col-sm-10
      %a.choose-btn.btn.btn-small.js-choose-group-avatar-button
        %i.fa.fa-paperclip
        %span Choose File ...
       
      %span.file_name.js-avatar-filename File name...
      = f.file_field :avatar, class: "js-group-avatar-input hidden"
      .light The maximum file size allowed is 100KB.

  - if @group.new_record?
    .form-group
      .col-sm-2
      .col-sm-10
        .bs-callout.bs-callout-info
          %ul
            %li A group is a collection of several projects
            %li Groups are private by default
            %li Members of a group may only view projects they have permission to access
            %li Group project URLs are prefixed with the group namespace
            %li Existing projects may be moved into a group
    .form-actions
      = f.submit 'Create group', class: "btn btn-create"
      = link_to  'Cancel', admin_groups_path, class: "btn btn-cancel"

  - else
    .form-group.group_name_holder
      = f.label :path, class: 'control-label' do
        %span Group path
      .col-sm-10
        = f.text_field :path, placeholder: "example-group", class: "form-control danger"
        .bs-callout.bs-callout-danger
          %ul
            %li Changing group path can have unintended side effects.
            %li Renaming group path will rename directory for all related projects
            %li It will change web url for access group and group projects.
            %li It will change the git path to repositories under this group.
    .form-actions
      = f.submit 'Save changes', class: "btn btn-primary"
      = link_to  'Cancel', admin_group_path(@group), class: "btn btn-cancel"