Skip to content

Instantly share code, notes, and snippets.

@noili
Created March 8, 2016 19:07
Show Gist options
  • Save noili/f2658c2c599c5cc5f143 to your computer and use it in GitHub Desktop.
Save noili/f2658c2c599c5cc5f143 to your computer and use it in GitHub Desktop.
<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