diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/views/call_histories/_navigation.html.haml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/app/views/call_histories/_navigation.html.haml b/app/views/call_histories/_navigation.html.haml index d72ad64..2218c50 100644 --- a/app/views/call_histories/_navigation.html.haml +++ b/app/views/call_histories/_navigation.html.haml @@ -1,14 +1,14 @@ %ul{:class => 'nav nav-pills'} - %li + %li{:class => (type.blank? ? :active : nil )} %a{ :href => "?type=" }= t("call_histories.index.navigation.all", :calls => @calls_count) - %li + %li{:class => (type == 'missed' ? :active : nil )} %a{ :href => "?type=missed" }= t("call_histories.index.navigation.missed", :calls => @calls_missed_count) - %li + %li{:class => (type == 'received' ? :active : nil )} %a{ :href => "?type=received" }= t("call_histories.index.navigation.received", :calls => @calls_received_count) - %li + %li{:class => (type == 'dialed' ? :active : nil )} %a{ :href => "?type=dialed" }= t("call_histories.index.navigation.dialed", :calls => @calls_dialed_count) - %li + %li{:class => (type == 'forwarded' ? :active : nil )} %a{ :href => "?type=forwarded" }= t("call_histories.index.navigation.forwarded", :calls => @calls_forwarded_count) -/ .pagination -/ = will_paginate @call_histories +.pagination + = will_paginate call_histories, :renderer => BootstrapPagination::Rails |