summaryrefslogtreecommitdiff
path: root/help/app/views/tickets/index.html.haml
blob: b8ec6cc039d0a8d7cadc8538bf3944530ab1a042 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
%h1 tickets index

Create a 
= link_to "new ticket", new_ticket_path

= #%div{"data-pjax-container" => ""} # not sure how to get this working right
.row
  .span2
    - if admin?
      %h4 whose tickets    
      %ul.nav.nav-pills.nav-stacked
        %li{:class => ("active" if params[:admin_status] == 'mine')}
          = link_to 'tickets i admin', {:admin_status => 'mine', :open_status => params[:open_status]}
        %li{:class => ("active" if params[:admin_status] != 'mine')} 
          = link_to 'all tickets', {:admin_status => 'all', :open_status => params[:open_status]}
  .span10
    .table-bordered 
     = # TODO not sure if want table, but playing around with layout here.
      %ul.nav.nav-tabs
        %li{:class => ("active" if params[:open_status] != 'closed' and params[:open_status] != 'all')}
          = link_to 'open issues', {:open_status => 'open', :admin_status => params[:admin_status]}
        %li{:class => ("active" if params[:open_status] == 'closed')}
          = link_to 'closed issues', {:open_status => 'closed', :admin_status => params[:admin_status]}
          = #%a{:href => "#"} closed issue
        %li{:class => ("active" if params[:open_status] == 'all')}
          = link_to 'open & closed issues', {:open_status => 'all', :admin_status => params[:admin_status]}
      %ul.nav.nav-pills
        = #TODO-pull-right isn't working as i want, but want this to the right of tabs within the same div/table
        %li
          = link_to 'created at'  
        %li{:class=> ("active" if true)}
          = link_to 'updated at'

    .table-bordered
      - @tickets.each do |ticket|
        %p
        = link_to ticket.title, ticket
        created:
        = ticket.created_at.to_s(:short)
        updated:
        = ticket.updated_at.to_s(:short)
        comments by:
        = ticket.commenters 
      = paginate @tickets

%div{"data-pjax-container" => ""}
  / PJAX updates will go here
  hmmm