Created
March 8, 2016 19:07
-
-
Save noili/f2658c2c599c5cc5f143 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p id="notice"><%= notice %></p> | |
<table style="width:100%"> | |
<tr> | |
<td><h1><%= @turn.employee %></td> | |
<td><h1><%= @turn.at %></td> | |
</tr> | |
<% @turn.visits.each do |visit| %> | |
<tr> | |
<td><%= visit.client.address %></td> | |
<td><%= visit.client.phone %></td> | |
<td><%= visit.client.email %></td> | |
</tr> | |
<% end %> | |
</table> | |
<%= link_to 'Edit', edit_turn_path(@turn) %> | | |
<%= link_to 'Back', turns_path %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment