diff options
author | Philip Arndt <parndt@gmail.com> | 2012-09-05 12:59:59 +1200 |
---|---|---|
committer | Philip Arndt <parndt@gmail.com> | 2012-09-05 12:59:59 +1200 |
commit | ac43abc84e6b08ddd25798e20e880f7d7c1fc1ae (patch) | |
tree | 871e37e73eb27ee0f1c2c3b4342db6c7999752b8 /app | |
parent | 6cc795274d9d1de415951dd6d8e1c0d1c99e237c (diff) | |
parent | 515313438da13faa9555665683d4321fd9bf0d49 (diff) | |
download | refinerycms-blog-ac43abc84e6b08ddd25798e20e880f7d7c1fc1ae.tar.gz refinerycms-blog-ac43abc84e6b08ddd25798e20e880f7d7c1fc1ae.tar.bz2 refinerycms-blog-ac43abc84e6b08ddd25798e20e880f7d7c1fc1ae.zip |
Merge remote-tracking branch 'Nethemba/ux_none_comments'
Diffstat (limited to 'app')
-rw-r--r-- | app/views/refinery/blog/posts/_comments.html.erb | 59 | ||||
-rw-r--r-- | app/views/refinery/blog/posts/show.html.erb | 4 | ||||
-rw-r--r-- | app/views/refinery/blog/shared/_post.html.erb | 14 |
3 files changed, 35 insertions, 42 deletions
diff --git a/app/views/refinery/blog/posts/_comments.html.erb b/app/views/refinery/blog/posts/_comments.html.erb index 8415971..daccd78 100644 --- a/app/views/refinery/blog/posts/_comments.html.erb +++ b/app/views/refinery/blog/posts/_comments.html.erb @@ -1,38 +1,37 @@ <aside id="comments"> - <h2><%= t('title', :scope => 'refinery.blog.posts.show.comments') %></h2> <% if (comments = @post.comments.approved).any? %> + <h2><%= t('title', :scope => 'refinery.blog.posts.show.comments') %></h2> <%= render :partial => "comment", :collection => comments %> - <% else %> - <p> - <%= t('none', :scope => 'refinery.blog.shared.comments') %>. - </p> <% end %> - <% flash.each do |key, value| %> - <div id='flash' class="flash flash_<%= key %>"> - <%= value %> - </div> - <% end %> + <% if Refinery::Blog::Post.comments_allowed? %> + + <% flash.each do |key, value| %> + <div id='flash' class="flash flash_<%= key %>"> + <%= value %> + </div> + <% end %> - <h2><%= t('add', :scope => 'refinery.blog.posts.show.comments') %></h2> - <%= form_for [refinery, :blog, @comment] do |f| %> - <%= render "/refinery/admin/error_messages", - :object => f.object, - :include_object_name => true %> - <div class='field'> - <%= f.label :name %> - <%= f.text_field :name %> - </div> - <div class='field'> - <%= f.label :email %> - <%= f.email_field :email %> - </div> - <div class='field message_field'> - <%= f.label :message %> - <%= f.text_area :message, :rows => 6 %> - </div> - <div class='field form-actions'> - <%= f.submit t('submit', :scope => 'refinery.blog.posts.show') %> - </div> + <h2><%= t('add', :scope => 'refinery.blog.posts.show.comments') %></h2> + <%= form_for [refinery, :blog, @comment] do |f| %> + <%= render "/refinery/admin/error_messages", + :object => f.object, + :include_object_name => true %> + <div class='field'> + <%= f.label :name %> + <%= f.text_field :name %> + </div> + <div class='field'> + <%= f.label :email %> + <%= f.email_field :email %> + </div> + <div class='field message_field'> + <%= f.label :message %> + <%= f.text_area :message, :rows => 6 %> + </div> + <div class='field form-actions'> + <%= f.submit t('submit', :scope => 'refinery.blog.posts.show') %> + </div> + <% end %> <% end %> </aside> diff --git a/app/views/refinery/blog/posts/show.html.erb b/app/views/refinery/blog/posts/show.html.erb index bc9b203..f04ae0b 100644 --- a/app/views/refinery/blog/posts/show.html.erb +++ b/app/views/refinery/blog/posts/show.html.erb @@ -3,9 +3,7 @@ <%= render 'post' %> </div> - <% if Refinery::Blog::Post.comments_allowed? %> - <%= render 'comments'%> - <% end %> + <%= render 'comments' %> <% end %> <%= render '/refinery/blog/shared/body_content_right' %> diff --git a/app/views/refinery/blog/shared/_post.html.erb b/app/views/refinery/blog/shared/_post.html.erb index 40ae70b..532d48f 100644 --- a/app/views/refinery/blog/shared/_post.html.erb +++ b/app/views/refinery/blog/shared/_post.html.erb @@ -34,15 +34,11 @@ <%= link_to t('read_more', :scope => 'refinery.blog.shared.posts'), refinery.blog_post_path(post) %> <% end %> </p> - <aside class='comment_count'> - <% if Refinery::Blog::Post.comments_allowed? %> - <% if post.comments.any? %> - (<%= pluralize(post.comments.approved.count, t('singular', :scope => 'refinery.blog.shared.comments')) %>) - <% else %> - (<%= t('none', :scope => 'refinery.blog.shared.comments') %>) - <% end %> - <% end %> - </aside> + <% if Refinery::Blog::Post.comments_allowed? %> + <aside class='comment_count'> + <%= link_to "#{t('title', :scope => 'refinery.blog.posts.show.comments')} (#{post.comments.approved.count})", refinery.blog_post_path(post) << '#comments' %> + </aside> + <% end %> </footer> </article> <% end %> |