mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2024-12-22 15:43:14 +01: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])
|
||||
end
|
||||
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
|
||||
|
|
|
@ -4,9 +4,11 @@ div
|
|||
.clearfix
|
||||
- if @show_search_result
|
||||
.left
|
||||
| #{@papers.total} Treffer
|
||||
| #{@papers_count} Treffer
|
||||
.right
|
||||
button.button. TODO: Suche Abbonieren
|
||||
- else
|
||||
| #{@papers_count} Dokumente in der Datenbank
|
||||
div
|
||||
ul.no-bullet
|
||||
- @papers.each do |doc|
|
||||
|
|
Loading…
Reference in a new issue