summaryrefslogtreecommitdiff
path: root/help/app/views/tickets/index.html.haml
blob: c02a32654e1ba9c126a75ca4208c51bd1470a05d (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].nil?

= 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