mirror of
https://github.com/rickbarrette/redmine_qbo.git
synced 2025-11-08 17:04:23 -05:00
36 lines
620 B
Plaintext
36 lines
620 B
Plaintext
<table>
|
|
<tbody>
|
|
<tr>
|
|
<th>Customer</th>
|
|
<td><%= @customer.name %></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th>Email</th>
|
|
<td><%= @customer.email %></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th>Primary Phone</th>
|
|
<td><%= @customer.primary_phone %></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th>Mobile Phone</th>
|
|
<td><%= @customer.mobile_phone %></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th>Notes</th>
|
|
<td><%= @customer.notes %></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td/>
|
|
<td>
|
|
<%= button_to "Edit", edit_customer_path(@customer), method: :get%>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|