diff --git a/app/views/admin/_comments.html.erb b/app/views/admin/_comments.html.erb
index ab698393c8..07d35ac4a1 100644
--- a/app/views/admin/_comments.html.erb
+++ b/app/views/admin/_comments.html.erb
@@ -34,3 +34,4 @@
<% end %>
+<%= will_paginate @comments, :renderer => WillPaginate::ActionView::BootstrapLinkRenderer unless @unpaginated || @comments.empty? %>
\ No newline at end of file
diff --git a/app/views/admin/_nodes.html.erb b/app/views/admin/_nodes.html.erb
index d537c79351..81ea6c511e 100644
--- a/app/views/admin/_nodes.html.erb
+++ b/app/views/admin/_nodes.html.erb
@@ -80,3 +80,4 @@
<% end %>
+<%= will_paginate @nodes, :renderer => WillPaginate::ActionView::BootstrapLinkRenderer unless @unpaginated || @nodes.empty? %>
\ No newline at end of file
diff --git a/app/views/admin/_revisions.html.erb b/app/views/admin/_revisions.html.erb
index 8c28d393f8..36f9be0499 100644
--- a/app/views/admin/_revisions.html.erb
+++ b/app/views/admin/_revisions.html.erb
@@ -32,3 +32,4 @@
<% end %>
+<%= will_paginate @revisions, :renderer => WillPaginate::ActionView::BootstrapLinkRenderer unless @unpaginated || @revisions.empty? %>
\ No newline at end of file