playground/app/views/scraps/show.html.erb

27 lines
595 B
Text

<div class="mainaboutbox">
<div class="scrapbox">
<%= link_to '[ b a c k . . ? ]', scraps_path %>
<h2>SCRAPBOOK ENTRY #<%= @scrap.id %></h2>
<% if @scrap.image.attached? %>
<%= image_tag @scrap.image %> <% end %>
<%= @scrap.text %>
</p>
<p>
<hr><hr>
<% if @scrap.music.present? %>
<strong>Current Music:</strong>
<%= @scrap.music %>
<% end %>
</p>
<% if @scrap.mood.present? %>
<p>
<strong>Current Mood:</strong>
<%= @scrap.mood %></p>
<% end %>
<p>
<% if @scrap.notes.present? %>
<strong>Notes:</strong>
<%= @scrap.notes %></p>
<% end %>
</div></ddiv>