summaryrefslogtreecommitdiff
path: root/engines/support/app/views/tickets/index.html.haml
blob: 526cd6df155adc493520a977d65fe3171af32b36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
- @show_navigation = params[:user_id].present?

= render 'tickets/tabs'

%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