40 lines
1.5 KiB
Diff
40 lines
1.5 KiB
Diff
|
Last-Update: 2016-08-08
|
||
|
Forwarded: no
|
||
|
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=819903
|
||
|
Author: Libor Klepáč <libor.klepac@bcom.cz>
|
||
|
Reviewed-By: Dmitry Smirnov <onlyjob@debian.org>
|
||
|
Description: fix error 500 on runners page.
|
||
|
"ActionView::Template::Error (Missing partial kaminari/_paginator"
|
||
|
|
||
|
--- a/app/views/admin/runners/index.html.haml
|
||
|
+++ b/app/views/admin/runners/index.html.haml
|
||
|
@@ -69,5 +69,5 @@
|
||
|
%th
|
||
|
|
||
|
- @runners.each do |runner|
|
||
|
= render "admin/runners/runner", runner: runner
|
||
|
- = paginate @runners
|
||
|
+ = paginate @runners, theme: "gitlab"
|
||
|
--- a/app/views/admin/runners/show.html.haml
|
||
|
+++ b/app/views/admin/runners/show.html.haml
|
||
|
@@ -66,9 +66,9 @@
|
||
|
.pull-right
|
||
|
= form_for [:admin, project.namespace.becomes(Namespace), project, project.runner_projects.new] do |f|
|
||
|
= f.hidden_field :runner_id, value: @runner.id
|
||
|
= f.submit 'Enable', class: 'btn btn-xs'
|
||
|
- = paginate @projects
|
||
|
+ = paginate @projects, theme: "gitlab"
|
||
|
|
||
|
.col-md-6
|
||
|
%h4 Recent builds served by this runner
|
||
|
%table.table.builds.runner-builds
|
||
|
--- a/app/views/projects/runners/_specific_runners.html.haml
|
||
|
+++ b/app/views/projects/runners/_specific_runners.html.haml
|
||
|
@@ -25,5 +25,5 @@
|
||
|
- if @assignable_runners.any?
|
||
|
%h4.underlined-title Available specific runners
|
||
|
%ul.bordered-list.available-specific-runners
|
||
|
= render partial: 'runner', collection: @assignable_runners, as: :runner
|
||
|
- = paginate @assignable_runners
|
||
|
+ = paginate @assignable_runners, theme: "gitlab"
|