Files
growstuff/app/views/crops/_posts.html.haml
Brenda Wallace 878c692b27 posts display
2019-06-12 14:48:00 +12:00

24 lines
691 B
Plaintext

%a{ name: 'posts' }
%h2 What people are saying about #{crop.name.pluralize}
- if @posts.empty?
%p
Nobody has posted about #{crop.name.pluralize} yet.
%p
- if can? :create, Post
= link_to "Post something", new_post_path, class: 'btn btn-default'
- else
= render partial: "shared/signin_signup",
locals: { to: "post your tips and experiences growing #{crop.name.pluralize}" }
- else
.pagination
= page_entries_info @posts
= render 'layouts/pagination', collection: @posts
- @posts.each do |post|
= render 'posts/preview', post: post
.pagination
= page_entries_info @posts
= render 'layouts/pagination', collection: @posts