summaryrefslogtreecommitdiff
path: root/help/app/views/tickets/index.html.haml
blob: f4597a7235f5903cd8edbdc7785652216567c6fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
= render 'tickets/table-nav'

%table.table.table-striped.table-bordered
  %thead
    %tr
      %th= t(:subject)
      %th= t(:created)
      %th= t(:updated)
      %th= t(:voices)
  %tbody
    - if @tickets.any?
      = render @tickets.all
    - else
      %tr
        %td{:colspan=>4}= t(:none)

= paginate @tickets