diff options
author | jessib <jessib@riseup.net> | 2012-10-31 17:02:02 -0700 |
---|---|---|
committer | jessib <jessib@riseup.net> | 2012-10-31 17:02:02 -0700 |
commit | 8b5f7fb6ef438ef034541d6fb500b5ab7e12f3f2 (patch) | |
tree | 568d0048c0625fec84a17e6cef7339a31831c2f3 /help/app/views/tickets/index.html.haml | |
parent | 73a4e9f06840a85225d93734c1f4fb2ebb3b5a93 (diff) |
Very basic filtering of tickets based on status. Will want this ajax-y.
Diffstat (limited to 'help/app/views/tickets/index.html.haml')
-rw-r--r-- | help/app/views/tickets/index.html.haml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/help/app/views/tickets/index.html.haml b/help/app/views/tickets/index.html.haml index 6db2140..1f46433 100644 --- a/help/app/views/tickets/index.html.haml +++ b/help/app/views/tickets/index.html.haml @@ -3,7 +3,9 @@ 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 += form_tag (tickets_path, :method => :get) do # want to redo as ajax, and make sure it displays the selected option + = select_tag :status, options_for_select(["open", "closed", "all"]) + = submit_tag "filter" - @tickets.each do |ticket| %p = link_to ticket.title, ticket |