felipero/couchrails

View on GitHub
examples/helloworld/app/views/posts/show.html.erb

Summary

Maintainability
Test Coverage
<p class="notice"><%= notice %></p>

<p>
  <b>Title:</b>
  <%= @post.title %>
</p>

<p>
  <b>Content:</b>
  <%= @post.content %>
</p>

<p>
  <b>Comments:</b>
  <%= post.comments.size if post.comments %>
</p>


<%= link_to 'Edit', edit_post_path(@post) %> |
<%= link_to 'Back', posts_path %>