Skip to content

Instantly share code, notes, and snippets.

@Yax
Created August 28, 2009 20:49
Show Gist options
  • Select an option

  • Save Yax/177228 to your computer and use it in GitHub Desktop.

Select an option

Save Yax/177228 to your computer and use it in GitHub Desktop.
<% for ticket in @tickets %>
<tr>
<td><%=h ticket.category.name %></td>
<td><%=h ticket.employee_name %></td>
<td><%=h ticket.email %></td>
<td><%=h ticket.order_number %></td>
<td><%= link_to 'Pokaż', ticket %></td>
<td><%= link_to 'Edytuj', edit_ticket_path(ticket) %></td>
<td><%= link_to 'Usuń', ticket, :confirm => 'Jesteś pewny?', :method => :delete %></td>
</tr>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment