summaryrefslogtreecommitdiff
path: root/app/views/phone_books
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/phone_books')
-rw-r--r--app/views/phone_books/_index_core.html.haml18
-rw-r--r--app/views/phone_books/edit.html.haml2
-rw-r--r--app/views/phone_books/index.html.haml2
-rw-r--r--app/views/phone_books/new.html.haml2
-rw-r--r--app/views/phone_books/show.html.haml2
5 files changed, 14 insertions, 12 deletions
diff --git a/app/views/phone_books/_index_core.html.haml b/app/views/phone_books/_index_core.html.haml
index 5f50675..accded6 100644
--- a/app/views/phone_books/_index_core.html.haml
+++ b/app/views/phone_books/_index_core.html.haml
@@ -1,16 +1,18 @@
-%table
+%table{:class => 'table table-striped'}
%tr
%th= t('phone_books.index.name')
- %th= t('phone_books.index.description')
%th= t('phone_books.index.count')
-
- - reset_cycle
+ %th{:colspan => '3'}
+
- for phone_book in phone_books
- %tr{:class => cycle('odd', 'even')}
- %td= phone_book.name
- %td= phone_book.description
+ %tr
+ %td
+ - if phone_book.description.blank?
+ = phone_book.name
+ - else
+ %a.brand{:rel => 'tooltip', :title => phone_book.description}
+ = phone_book.name
%td
= number_with_delimiter( phone_book.phone_book_entries.count )
- = render :partial => 'shared/create_link', :locals => {:parent => phone_book, :child_class => PhoneBookEntry, :short_link => true}
=render :partial => 'shared/index_view_edit_destroy_part', :locals => {:parent => phone_book.phone_bookable, :child => phone_book} \ No newline at end of file
diff --git a/app/views/phone_books/edit.html.haml b/app/views/phone_books/edit.html.haml
index 36c945b..e1d4553 100644
--- a/app/views/phone_books/edit.html.haml
+++ b/app/views/phone_books/edit.html.haml
@@ -1,3 +1,3 @@
-- title t("phone_books.edit.page_title", :resource => @phone_book)
+- content_for :title, t("phone_books.edit.page_title", :resource => @phone_book)
= render "form"
diff --git a/app/views/phone_books/index.html.haml b/app/views/phone_books/index.html.haml
index 52b4e9b..e681878 100644
--- a/app/views/phone_books/index.html.haml
+++ b/app/views/phone_books/index.html.haml
@@ -1,4 +1,4 @@
-- title t("phone_books.index.page_title")
+- content_for :title, t("phone_books.index.page_title")
- if @phone_books.count > 0
= render "index_core", :phone_books => @phone_books
diff --git a/app/views/phone_books/new.html.haml b/app/views/phone_books/new.html.haml
index e96ce1e..66d6e99 100644
--- a/app/views/phone_books/new.html.haml
+++ b/app/views/phone_books/new.html.haml
@@ -1,3 +1,3 @@
-- title t("phone_books.new.page_title")
+- content_for :title, t("phone_books.new.page_title")
= render "form" \ No newline at end of file
diff --git a/app/views/phone_books/show.html.haml b/app/views/phone_books/show.html.haml
index 047b15e..5140b91 100644
--- a/app/views/phone_books/show.html.haml
+++ b/app/views/phone_books/show.html.haml
@@ -1,4 +1,4 @@
-- title @phone_book
+- content_for :title, @phone_book
- if ! @phone_book.description.blank?
%p
%strong= t('phone_books.show.description') + ":"