summaryrefslogtreecommitdiff
path: root/help/app/views/tickets/index.html.haml
blob: 6db21407736a84e3cc073dfb6f0291f3712d8523 (plain)
1
2
3
4
5
6
7
8
9
10
%h2 tickets index (just as space)
Create a 
= link_to "new ticket", new_ticket_path
= # below shouldn't be unless logged in
%h2 Tickets
= # want to have selection option to see tickets, that are open, closed or all
- @tickets.each do |ticket|
  %p
  = link_to ticket.title, ticket
= #render(:partial => "ticket", :collection => @tickets)