MarioCarrion/json-array-fields-for

View on GitHub
app/views/articles/show.html.erb

Summary

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

<p>
  <strong>Name:</strong>
  <%= article.name %>
</p>

<p>
  <strong>Description:</strong>
  <%= article.description %>
</p>

<p>
  <strong>Tags:</strong>
  <ul>
    <% article.tags.each do |tag| %>
      <li><%= tag.name %></li>
    <% end %>
  </ul>
</p>

<%= link_to 'Edit', edit_article_path(article) %> |
<%= link_to 'Back', articles_path %>