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

28 lines
600 B
Text
Raw Normal View History

2026-05-17 08:25:17 +00:00
<div class="mainaboutboxscrap">
2026-05-17 03:44:36 +00:00
<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 %>
2026-05-17 03:44:36 +00:00
</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 %>
2026-05-17 03:44:36 +00:00
</div></ddiv>