Sha256: 0fa20194c96a83dfd4f033adba7490c33b159049e2e468462260bd51958ba52b

Contents?: true

Size: 748 Bytes

Versions: 2

Compression:

Stored size: 748 Bytes

Contents

<div class="row">
  <div class="col">
    <h1>PreRegistrations</h1>
    <p>
      <%= link_to 'New', new_pre_registration_path, class: 'button' %>
    </p>
  </div>
</div>
<div class="row">
  <div class="col">
    <table>
      <thead>
        <tr>
          <th>Email</th>
          <th>First</th>
          <th>Last</th>
          <th>Actions</th>
        </tr>
      </thead>
      <tbody>
        <% @pre_registration.each do |r| %>
          <tr>
            <td><%= r.email %></td>
            <td><%= r.first_name %></td>
            <td><%= r.last_name %></td>
            <td><%= link_to 'Delete', r, method: :delete, data: { confirm: 'Are you sure?' } %></td>
          </tr>
        <% end %>
      </tbody>
    </table>
  </div>
</div>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mr_common-2.1.0 app/views/mr_common/pre_registrations/pre_registrations/index.html.erb
mr_common-2.0.0 app/views/mr_common/pre_registrations/pre_registrations/index.html.erb