From 7c842dd79b3ac4a8bd462ef80ee1e27f5e74e4d3 Mon Sep 17 00:00:00 2001 From: Stefan Wintermeyer Date: Tue, 22 Jan 2013 23:46:57 +0100 Subject: Optimized views for phones. --- app/views/phone_books/_index_core.html.haml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'app/views/phone_books/_index_core.html.haml') diff --git a/app/views/phone_books/_index_core.html.haml b/app/views/phone_books/_index_core.html.haml index df7a2ef..a95ce7c 100644 --- a/app/views/phone_books/_index_core.html.haml +++ b/app/views/phone_books/_index_core.html.haml @@ -2,17 +2,19 @@ %thead %tr %th= t('phone_books.index.name') + %th + %span.visible-desktop + = t('phone_books.index.description') %th= t('phone_books.index.count') %tbody - for phone_book in phone_books %tr %td - - if phone_book.description.blank? - = phone_book.name - - else - %a.brand{:rel => 'tooltip', :title => phone_book.description} - = phone_book.name + = phone_book.name + %td + %span.visible-desktop + = phone_book.description %td = number_with_delimiter( phone_book.phone_book_entries.count ) -- cgit v1.2.3