Files
growstuff/app/views/forums/show.html.haml
Cjay Billones bb88041fef [Refactoring] Replace .count and .length with .size for collections
Improved program efficiency (in querying in particular) by replacing .count and .length with .size for collections.

Fix error in refactoring

Reverted some .size into .count
2015-06-25 12:09:03 +08:00

29 lines
659 B
Plaintext

- content_for :title, @forum.name
%p#notice= notice
%p.forum-meta
This forum is run by
= link_to @forum.owner, @forum.owner
%div
:growstuff_markdown
#{ strip_tags(@forum.description) }
- if can? :edit, @forum
=link_to "Edit", edit_forum_path(@forum), :class => 'btn btn-default btn-xs'
- if can? :delete, @forum
= link_to 'Delete', @forum, :method => :delete, :data => { :confirm => 'Are you sure?' }
%h2
Posts
=link_to "Post something", new_post_path(:forum_id => @forum.id), :class => 'btn btn-primary'
- if @forum.posts.size > 0
=render :partial => "posts/summary", :locals => { :posts => @forum.posts }
- else
No posts yet.