mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2025-04-20 07:11:33 +02:00
Show the number of all papers on homepage
This commit is contained in:
parent
40eeac2021
commit
553c1e653c
2 changed files with 8 additions and 4 deletions
|
@ -1,10 +1,12 @@
|
|||
class SearchController < ApplicationController
|
||||
def index
|
||||
@show_search_result = params[:q].present?
|
||||
@papers = if @show_search_result
|
||||
Paper.search(params[:q]).page(params[:page]).results
|
||||
papers_found = if @show_search_result
|
||||
Paper.search(params[:q])
|
||||
else
|
||||
Paper.order(published_at: :desc).page(params[:page])
|
||||
Paper.order(published_at: :desc)
|
||||
end
|
||||
@papers_count = @show_search_result ? papers_found.results.total : papers_found.count
|
||||
@papers = papers_found.page(params[:page])
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue