initial commit
This commit is contained in:
47
app/views/clients/_client.html.erb
Normal file
47
app/views/clients/_client.html.erb
Normal file
@@ -0,0 +1,47 @@
|
||||
<div id="<%= dom_id client %>">
|
||||
<p>
|
||||
<strong>Company name:</strong>
|
||||
<%= client.company_name %>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<strong>Firstname:</strong>
|
||||
<%= client.firstname %>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<strong>Lastname:</strong>
|
||||
<%= client.lastname %>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<strong>Streetname:</strong>
|
||||
<%= client.streetname %>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<strong>Zipcode:</strong>
|
||||
<%= client.zipcode %>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<strong>City:</strong>
|
||||
<%= client.city %>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<strong>Country:</strong>
|
||||
<%= client.country %>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<strong>Email:</strong>
|
||||
<%= client.email %>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<strong>Phone:</strong>
|
||||
<%= client.phone %>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
Reference in New Issue
Block a user