Sha256: 5cbdf78645a7b3ae1169c71864516578abcb4935dab5801d0060bc992795da56

Contents?: true

Size: 1.07 KB

Versions: 9

Compression:

Stored size: 1.07 KB

Contents

<div class="row">
  <div class="col">
    <h1>Registrations</h1>
    <p>
      <%= link_to 'New', new_registration_path, class: 'button' %>
      <%= link_to 'Export CSV', registrations_export_index_path, class: 'button' %>
    </p>
  </div>
</div>
<div class="row">
  <div class="col">
    <table>
      <thead>
        <tr>
          <th>First Name</th>
          <th>Last Name</th>
          <th>Email</th>
          <th>Contact</th>
          <th>Actions</th>
        </tr>
      </thead>
      <tbody>
        <% @registrations.each do |r| %>
          <tr>
            <td><%= r.first_name %></td>
            <td><%= r.last_name %></td>
            <td><%= r.email %></td>
            <td>
              <%= success_badge('Email', value: r.contact_via_email) %>
              <%= success_badge('Phone', value: r.contact_via_phone) %>
            </td>
            <td>
              <%= link_to "Show", registration_path(r) %>
              <%= link_to "Edit", edit_registration_path(r) %>
            </td>
          </tr>
        <% end %>
      </tbody>
    </table>
  </div>
</div>

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
mr_common-1.3.0 app/views/mr_common/registrations/registrations/index.html.erb
mr_common-1.2.0 app/views/mr_common/registrations/registrations/index.html.erb
mr_common-1.1.0 app/views/mr_common/registrations/registrations/index.html.erb
mr_common-1.0.5 app/views/mr_common/registrations/registrations/index.html.erb
mr_common-1.0.4 app/views/mr_common/registrations/registrations/index.html.erb
mr_common-1.0.3 app/views/mr_common/registrations/registrations/index.html.erb
mr_common-1.0.2 app/views/mr_common/registrations/registrations/index.html.erb
mr_common-1.0.1 app/views/mr_common/registrations/registrations/index.html.erb
mr_common-1.0.0 app/views/mr_common/registrations/registrations/index.html.erb