Skip to content

Commit

Permalink
removing noisy "no comments" message
Browse files Browse the repository at this point in the history
  • Loading branch information
keram committed Aug 19, 2012
1 parent 06fe63e commit 84ac24a
Showing 1 changed file with 29 additions and 30 deletions.
59 changes: 29 additions & 30 deletions app/views/refinery/blog/posts/_comments.html.erb
Original file line number Diff line number Diff line change
@@ -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>

0 comments on commit 84ac24a

Please sign in to comment.