diff options
author | elijah <elijah@riseup.net> | 2013-06-19 00:33:19 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2013-07-04 04:00:47 -0700 |
commit | 8393058ac15d72be702a6de481d6129aed4bbef3 (patch) | |
tree | 79af217151c3622058b79b2511c55c1b2babb3da /help/app/views/tickets/_admin-nav.html.haml | |
parent | e58fd0550b4a29fac9d52dc8a78d04333ccc8c06 (diff) |
new ui for tickets
Diffstat (limited to 'help/app/views/tickets/_admin-nav.html.haml')
-rw-r--r-- | help/app/views/tickets/_admin-nav.html.haml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/help/app/views/tickets/_admin-nav.html.haml b/help/app/views/tickets/_admin-nav.html.haml index 0e45c40..3e65e44 100644 --- a/help/app/views/tickets/_admin-nav.html.haml +++ b/help/app/views/tickets/_admin-nav.html.haml @@ -1,5 +1,5 @@ -%ul.nav.nav-pills.nav-stacked - %li{:class => ("active" if admin == 'mine')} - = link_to 'tickets i admin', {:admin_status => 'mine', :open_status => status, :sort_order => order} - %li{:class => ("active" if admin == 'all')} - = link_to 'all tickets', {:admin_status => 'all', :open_status => status, :sort_order => order} +.btn-group + %span.btn.disabled= t(:admin) + ':' + = link_to t(:my_tickets), {:admin_status => 'mine', :open_status => status, :sort_order => order}, :class => ['btn', ("active" if admin == 'mine')].join(' ') + = link_to t(:all_tickets), {:admin_status => 'all', :open_status => status, :sort_order => order}, :class => ['btn', ("active" if admin == 'all')].join(' ') +%br
\ No newline at end of file |