Sha256: b54674731af2d7638e27688aec1510a11988b26b1d8bd1c26963509a0d5acb38

Contents?: true

Size: 1.07 KB

Versions: 11

Compression:

Stored size: 1.07 KB

Contents

<div class="row">
  <div class="col">
    <h1>Reminder Details</h1>
    <p>
      <%= link_to "Edit", edit_reminder_path(@reminder), class: 'button' %>
      <%= link_to "Destroy", @reminder, method: :delete, class: 'button-alert' %>
    </p>
  </div>
</div>
<div class="row">
  <div class="col">
    <table class="attributes-table">
      <tbody>
        <tr>
          <th>Summary</th>
          <td><%= @reminder.summary %></td>
        </tr>
        <tr>
          <th>Location</th>
          <td><%= @reminder.location %></td>
        </tr>
        <tr>
          <th>Time</th>
          <td><%= @reminder.start_time.to_s(:short) %> to <%= @reminder.end_time.to_s(:short) %></td>
        </tr>
        <tr>
          <th>All Day</th>
          <td><%= @reminder.all_day? ? 'Yes' : 'No' %></td>
        </tr>
        <tr>
          <th>Slug</th>
          <td>
            <%= @reminder.slug %>
          </td>
        </tr>
        <tr>
          <th>Description</th>
          <td><%= simple_format @reminder.description %></td>
        </tr>
      </tbody>
    </table>
  </div>
</div>

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
mr_common-2.1.0 app/views/mr_common/reminders/reminders/show.html.erb
mr_common-2.0.0 app/views/mr_common/reminders/reminders/show.html.erb
mr_common-1.3.0 app/views/mr_common/reminders/reminders/show.html.erb
mr_common-1.2.0 app/views/mr_common/reminders/reminders/show.html.erb
mr_common-1.1.0 app/views/mr_common/reminders/reminders/show.html.erb
mr_common-1.0.5 app/views/mr_common/reminders/reminders/show.html.erb
mr_common-1.0.4 app/views/mr_common/reminders/reminders/show.html.erb
mr_common-1.0.3 app/views/mr_common/reminders/reminders/show.html.erb
mr_common-1.0.2 app/views/mr_common/reminders/reminders/show.html.erb
mr_common-1.0.1 app/views/mr_common/reminders/reminders/show.html.erb
mr_common-1.0.0 app/views/mr_common/reminders/reminders/show.html.erb