ugly american notification pagination

This commit is contained in:
Devin Howard 2016-12-11 17:29:48 -05:00
parent 95860dfc55
commit 95671010eb
2 changed files with 6 additions and 1 deletions

View file

@ -5,7 +5,7 @@ class NotificationsController < ApplicationController
before_action :set_receipt, only: [:show, :mark_read, :mark_unread]
def index
@notifications = current_user.mailbox.notifications
@notifications = current_user.mailbox.notifications.page(params[:page]).per(25)
respond_to do |format|
format.html

View file

@ -30,6 +30,11 @@
<% end %>
</ul>
</div>
<div class="centerContent pagination">
<%= paginate @notifications %>
</div>
<%= render partial: 'shared/back_to_mapping' %>
</div>