42 lines
1.2 KiB
Plaintext
42 lines
1.2 KiB
Plaintext
<p id="notice"><%= notice %></p>
|
|
|
|
<h1>Crm Customers</h1>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Company</th>
|
|
<th>Contact no</th>
|
|
<th>Email</th>
|
|
<th>Date of birth</th>
|
|
<th>Membership</th>
|
|
<th>Membership type</th>
|
|
<th>Membership authentication code</th>
|
|
<th colspan="3"></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<% @crm_customers.each do |crm_customer| %>
|
|
<tr>
|
|
<td><%= crm_customer.name %></td>
|
|
<td><%= crm_customer.company %></td>
|
|
<td><%= crm_customer.contact_no %></td>
|
|
<td><%= crm_customer.email %></td>
|
|
<td><%= crm_customer.date_of_birth %></td>
|
|
<td><%= crm_customer.membership_id %></td>
|
|
<td><%= crm_customer.membership_type %></td>
|
|
<td><%= crm_customer.membership_authentication_code %></td>
|
|
<td><%= link_to 'Show', crm_customer_path(crm_customer) %></td>
|
|
<td><%= link_to 'Edit', edit_crm_customer_path(crm_customer) %></td>
|
|
<td><%= link_to 'Destroy', crm_customer_path(crm_customer), method: :delete, data: { confirm: 'Are you sure?' } %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
|
|
<br>
|
|
|
|
<%= link_to 'New Crm Customer', new_crm_customer_path %>
|