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
path: root/app/views
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-09-11 20:59:39 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-09-11 20:59:39 +0300
commit15eeae5fa8f10442617d2edd8fc3d8f5b3f334db (patch)
tree8538a3cb4ab9b6945035fc4b17daef1696511405 /app/views
parent2b683807b52d4b7d156da31ed9e1f8aa20c248d9 (diff)
Fix 500 when search for gitlab projects
Diffstat (limited to 'app/views')
-rw-r--r--app/views/ci/projects/index.html.haml9
-rw-r--r--app/views/layouts/ci/application.html.haml2
2 files changed, 3 insertions, 8 deletions
diff --git a/app/views/ci/projects/index.html.haml b/app/views/ci/projects/index.html.haml
index 99d07329af0..4c74610a575 100644
--- a/app/views/ci/projects/index.html.haml
+++ b/app/views/ci/projects/index.html.haml
@@ -1,10 +1,5 @@
- if current_user
- = content_for :title do
- %h3.project-title
- Dashboard
- .pull-right
- = render "search"
-
+ = render "search"
.projects
%p.fetch-status.light
%i.fa.fa-refresh.fa-spin
@@ -12,6 +7,6 @@
$.get '#{gitlab_ci_projects_path}', (data) ->
$(".projects").html data.html
CiPager.init "#{gitlab_ci_projects_path}", #{Ci::ProjectsController::PROJECTS_BATCH}, false
-
+
- else
= render 'public'
diff --git a/app/views/layouts/ci/application.html.haml b/app/views/layouts/ci/application.html.haml
index 7fb1a0097b2..b9f871d5447 100644
--- a/app/views/layouts/ci/application.html.haml
+++ b/app/views/layouts/ci/application.html.haml
@@ -2,7 +2,7 @@
%html{ lang: "en"}
= render 'layouts/head'
%body{class: "ci-body #{user_application_theme}", 'data-page' => body_data_page}
- - header_title = "Projects"
+ - header_title = "CI Projects"
- if current_user
= render "layouts/header/default", title: header_title
- else