Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_form.html.haml « groups « admin « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 40d361b04024d1a7b1489f8874d20d0b64321a13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
= form_for [:admin, @group] do |f|
  - if @group.errors.any?
    .alert-message.block-message.error
      %span= @group.errors.full_messages.first
  .clearfix.group_name_holder
    = f.label :name do
      Group name is
    .input
      = f.text_field :name, placeholder: "Example Group", class: "xxlarge"
  .clearfix
    = f.label :path do
      URL
    .input
      .input-prepend
        %span.add-on= web_app_url + 'groups/'
        = f.text_field :path, placeholder: "example"

  .form-actions
    = f.submit 'Save group', class: "btn save-btn"