OSDN Git Service

t#31470:create pager
[pettanr/pettanr.git] / app / controllers / ground_pictures_controller.rb
index f940c58..2d6aff4 100644 (file)
@@ -9,15 +9,15 @@ class GroundPicturesController < ApplicationController
     before_filter :authenticate_author, :only => []
   end
 
-  # GET /ground_pictures
-  # GET /ground_pictures.json
   def index
     @page = GroundPicture.page params[:page]
     @page_size = GroundPicture.page_size params[:page_size]
     @ground_pictures = GroundPicture.list(@page, @page_size)
 
     respond_to do |format|
-      format.html # index.html.erb
+      format.html {
+        @paginate = GroundPicture.list_paginate(@page, @page_size)
+      }
       format.json { render :json => @ground_pictures.to_json(GroundPicture.list_json_opt) }
     end
   end