|
|
|
@ -328,15 +328,15 @@ class ProjectsController < ApplicationController
|
|
|
|
|
else
|
|
|
|
|
@offset ||= @project_pages.reverse_offset
|
|
|
|
|
unless @offset == 0
|
|
|
|
|
@projects_status = @projects_status.reorder('changesets_count').offset(@offset).limit(@limit).all.reverse
|
|
|
|
|
@projects_status = @projects_status.offset(@offset).limit(@limit).all.reverse
|
|
|
|
|
else
|
|
|
|
|
limit = @project_count % @limit
|
|
|
|
|
if limit == 0
|
|
|
|
|
limit = @limit
|
|
|
|
|
end
|
|
|
|
|
@projects_status = @projects_status.reorder('changesets_count').offset(@offset).limit(limit).all.reverse
|
|
|
|
|
@projects_status = @projects_status.offset(@offset).limit(limit).all.reverse
|
|
|
|
|
end
|
|
|
|
|
@s_type = 1
|
|
|
|
|
@s_type = 0
|
|
|
|
|
# @projects = @projects.sort {|x,y| y.created_on <=> x.created_on }
|
|
|
|
|
# @projects = @projects[@offset, @limit]
|
|
|
|
|
end
|
|
|
|
|