diff options
Diffstat (limited to 'app/views/teams/new.html.haml')
-rw-r--r-- | app/views/teams/new.html.haml | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/app/views/teams/new.html.haml b/app/views/teams/new.html.haml index 7089f791558..99d308217e0 100644 --- a/app/views/teams/new.html.haml +++ b/app/views/teams/new.html.haml @@ -9,9 +9,15 @@ Team name is .input = f.text_field :name, placeholder: "Ex. Ruby Developers", class: "xxlarge left" - - = f.submit 'Create team', class: "btn btn-create" - %hr + + .clearfix.team-description-holder + = f.label :description, "Details" + .input + = f.text_area :description, maxlength: 250, class: "xxlarge js-gfm-input", rows: 4 + + .form-actions + = f.submit 'Create team', class: "btn btn-create" + .padded %ul %li All created teams are public (users can view who enter into team and which project are assigned for this team) |