blob: e1dca8421f02b275743f46fb79ccafefbb25297b (
plain)
1
2
3
4
5
6
7
8
9
|
%ul.nav.nav-tabs
%li{:class => ("active" if status == 'open')}
= link_to_status 'open'
%li{:class => ("active" if status == 'closed')}
= link_to_status 'closed'
%li{:class => ("active" if status == 'all')}
= link_to_status 'all'
%li{:class => ("active" if action?(:new))}
= link_to icon(:plus, :black) + t(:new_ticket), new_ticket_path
|