YaleSTC/shifts

View on GitHub
app/views/payform_sets/index.html.erb

Summary

Maintainability
Test Coverage
<% title "Print History" %>

<table class = "tablesorter">
 <thead>
  <tr>
    <th>Printed</th>
    <th>Number of Payforms</th>
  </tr>
 </thead>
  <% for payform_set in @payform_sets %>
 <tbody>
    <tr>
      <td><%= payform_set.created_at.strftime(date_format) %></td>
      <td><%=  payform_set.payforms.length %></td>
      <td><%= link_to "Show", payform_set %></td>
    </tr>
 </tbody>
  <% end %>
</table>