41 lines
693 B
Plaintext
41 lines
693 B
Plaintext
<p id="notice"><%= notice %></p>
|
|
|
|
<p>
|
|
<strong>Name:</strong>
|
|
<%= @crm_customer.name %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Company:</strong>
|
|
<%= @crm_customer.company %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Contact no:</strong>
|
|
<%= @crm_customer.contact_no %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Email:</strong>
|
|
<%= @crm_customer.email %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Date of birth:</strong>
|
|
<%= @crm_customer.date_of_birth %>
|
|
</p>
|
|
|
|
|
|
<p>
|
|
<strong>Membership type:</strong>
|
|
<%= @crm_customer.membership_type %>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Membership authentication code:</strong>
|
|
<%= @crm_customer.membership_authentication_code %>
|
|
</p>
|
|
|
|
<%= link_to 'Edit', edit_crm_customer_path(@crm_customer) %> |
|
|
<%= link_to 'Back', crm_customers_path %>
|