blob: a4df6e37b14f637155f67e8c553464357f094f99 (
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
|