30 lines
		
	
	
		
			633 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			633 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| <p style="color: green"><%= notice %></p>
 | |
| 
 | |
| <% content_for :title, "Client: #{@client.company_name}" %>
 | |
| 
 | |
| <h1>Client: <%= @client.company_name %></h1>
 | |
| 
 | |
| <div id="client">
 | |
|   <table>
 | |
|     <thead>
 | |
|       <tr>
 | |
|         <% client_view_fields.each do |attrib| %>
 | |
|           <th><%= attrib.to_s.humanize %></th>
 | |
|         <% end %>
 | |
|       </tr>
 | |
|     </thead>
 | |
|     <tbody>
 | |
|       <tr>
 | |
|         <%= render @client %>
 | |
|       </tr>
 | |
|     </tbody>
 | |
|   </table>
 | |
| </div>
 | |
| 
 | |
| <div>
 | |
|   <%= link_to "Edit this client", edit_client_path(@client) %> |
 | |
|   <%= link_to "Back to clients", clients_path %>
 | |
| 
 | |
|   <%= button_to "Destroy this client", @client, method: :delete %>
 | |
| </div>
 | 
