Sha256: 95f0d115590555b7d7a18e7faab0c7099479502b95807d83ef3567e8571112e7
Contents?: true
Size: 841 Bytes
Versions: 11
Compression:
Stored size: 841 Bytes
Contents
<div class="row"> <div class="col"> <h1>Reminders</h1> <p> <%= link_to 'New', new_reminder_path, class: 'button' %> </p> </div> </div> <div class="row"> <div class="col"> <table> <thead> <tr> <th>Summary</th> <th>Date</th> <th>Mailer</th> <th>Actions</th> </tr> </thead> <tbody> <% @reminders.each do |r| %> <tr> <td><%= r.summary %></td> <td><%= r.start_time.to_date %></td> <td><%= success_badge('Included', value: r.include_in_confirmation_mailer) %></td> <td> <%= link_to "Show", reminder_path(r) %> <%= link_to "Edit", edit_reminder_path(r) %> </td> </tr> <% end %> </tbody> </table> </div> </div>
Version data entries
11 entries across 11 versions & 1 rubygems