scheduled_reminders/app/views/reminders/show.html.erb

20 lines
306 B
Plaintext

<p id="notice"><%= notice %></p>
<p>
<strong>Title:</strong>
<%= @reminder.title %>
</p>
<p>
<strong>Body:</strong>
<%= @reminder.body %>
</p>
<p>
<strong>Date:</strong>
<%= @reminder.date %>
</p>
<%= link_to 'Edit', edit_reminder_path(@reminder) %> |
<%= link_to 'Back', reminders_path %>