<% @page.comments.each do |c| %> <% end %>

<%= c.name %>
<% if c.email? %> <%= mail_to c.email, c.email %>
<% end %> <% if c.url? %> <%= link_to c.url, c.url %>
<% end %>

<%= time_ago_in_words c.created_at %> ago
from <%= c.remote_ip %>

<%= link_to("Delete comment", admin_page_comment_url(@locale, @page, c), class: :delete, data: { confirm: "Are you sure?" }, method: :delete) %>

<%= c.body %>