asm-products/pay-it-forward

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

Summary

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

<p>
  <strong>Name:</strong>
  <%= @charity.name %>
</p>

<p>
  <strong>Description:</strong>
  <%= @charity.description %>
</p>

<p>
  <strong>Url:</strong>
  <%= @charity.url %>
</p>

<p>
  <strong>Image:</strong>
  <%= image_tag @charity.image.url %>
</p>

<%= link_to 'Edit', edit_charity_path(@charity) %> |
<%= link_to 'Back', charities_path %>