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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-01-09 12:29:55 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-01-09 12:29:55 +0400
commitcb589d231aaa9f4cf7a10c41d6fd1ebe34428173 (patch)
treed919740661ecacf712ae6fd9d39146287afa77c1 /app/views/admin/projects/show.html.haml
parentf8f76fdbfd06184c53c4dc3832601f3c07aeba77 (diff)
Fix public project search
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/views/admin/projects/show.html.haml')
-rw-r--r--app/views/admin/projects/show.html.haml5
1 files changed, 3 insertions, 2 deletions
diff --git a/app/views/admin/projects/show.html.haml b/app/views/admin/projects/show.html.haml
index 786482eee2e..34a91cce163 100644
--- a/app/views/admin/projects/show.html.haml
+++ b/app/views/admin/projects/show.html.haml
@@ -79,13 +79,14 @@
.title
Transfer project
.body
- = form_for @project, url: transfer_admin_project_path(@project), method: :put do |f|
+ = form_for @project, url: transfer_admin_project_path(@project), method: :put, html: { class: 'form-horizontal' } do |f|
.form-group
- = f.label :namespace_id, "Namespace"
+ = f.label :namespace_id, "Namespace", class: 'control-label'
.col-sm-10
= namespace_select_tag :namespace_id, selected: params[:namespace_id], class: 'input-large'
.form-group
+ .col-sm-2
.col-sm-10
= f.submit 'Transfer', class: 'btn btn-primary'