summaryrefslogtreecommitdiff
path: root/app/views
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-07-29 21:06:59 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-07-29 21:06:59 +0300
commit8290e7cc70db5f62ae02c4e19c0e6193dafd35f0 (patch)
tree683389cb8d01e8eb08d3f93242f5267c88a810fa /app/views
parentf4205abb7725c96c1a967f5b3779e09c6e94a21d (diff)
downloadgitlab-ce-8290e7cc70db5f62ae02c4e19c0e6193dafd35f0.tar.gz
Autofocus to project name at projects#new. Added description field to projects#new. Increased timeout for flash message
Diffstat (limited to 'app/views')
-rw-r--r--app/views/projects/new.html.haml10
1 files changed, 8 insertions, 2 deletions
diff --git a/app/views/projects/new.html.haml b/app/views/projects/new.html.haml
index 31343f5eb72..e45b2b5757e 100644
--- a/app/views/projects/new.html.haml
+++ b/app/views/projects/new.html.haml
@@ -7,8 +7,8 @@
= f.label :name do
Project name is
.input
- = f.text_field :name, placeholder: "Example Project", class: "xxlarge", tabindex: 1
- = f.submit 'Create project', class: "btn btn-create project-submit", tabindex: 3
+ = f.text_field :name, placeholder: "Example Project", class: "xxlarge", tabindex: 1, autofocus: true
+ = f.submit 'Create project', class: "btn btn-create project-submit", tabindex: 4
- if current_user.can_select_namespace?
.clearfix
@@ -29,6 +29,12 @@
= f.text_field :import_url, class: 'xlarge', placeholder: 'https://github.com/randx/six.git'
.light
URL must be cloneable
+ .clearfix
+ = f.label :description do
+ Description
+ %span.light (optional)
+ .input
+ = f.text_area :description, placeholder: "awesome project", class: "span5", rows: 3, maxlength: 250, tabindex: 3
%p.padded
New projects are private by default. You choose who can see the project and commit to repository.