Skip to content

Instantly share code, notes, and snippets.

@leemcalilly
Created July 8, 2013 19:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leemcalilly/64ef85f66aa5d887489d to your computer and use it in GitHub Desktop.
Save leemcalilly/64ef85f66aa5d887489d to your computer and use it in GitHub Desktop.
<% provide(:title, 'Checkout') %>
<h1>Checkout</h1>
<p id="notice"><%= notice %></p>
<p>
<strong>Job:</strong>
<%= @checkout.job %>
</p>
<p>
<strong>Shift:</strong>
<%= @checkout.shift %>
</p>
<p>
<strong>Employee:</strong>
<% @checkout.employees.each do |employee| %>
<%= employee.full_name %>
<% end %>
</p>
<p>
<strong>Date:</strong>
<%= @checkout.date %>
</p>
<p>
<strong>Hours:</strong>
<%= @checkout.hours %>
</p>
<p>
<strong>Sales:</strong>
<%= @checkout.sales %>
</p>
<p>
<strong>Tips:</strong>
<%= @checkout.tips %>
</p>
<p>
<strong>Owed:</strong>
<%= @checkout.owed %>
</p>
<p>
<strong>Collected:</strong>
<%= @checkout.collected %>
</p>
<p>
<strong>Notes:</strong>
<%= @checkout.notes %>
</p>
<%= link_to 'Edit', edit_checkout_path(@checkout) %> |
<%= link_to 'Back', checkouts_path %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment