summaryrefslogtreecommitdiff
path: root/app/views/sip_accounts
diff options
context:
space:
mode:
authorStefan Wintermeyer <stefan.wintermeyer@amooma.de>2013-01-23 17:36:33 +0100
committerStefan Wintermeyer <stefan.wintermeyer@amooma.de>2013-01-23 17:36:33 +0100
commite84e82032813b7acd71f8073d00f57e1cd65eb7c (patch)
treea1cb86a2d1857bde39932c89a4739ca8dcf01767 /app/views/sip_accounts
parentf67005b1bcbf4b0049b8d60dfcc669bd98745a49 (diff)
Fixed I18n bug.
Diffstat (limited to 'app/views/sip_accounts')
-rw-r--r--app/views/sip_accounts/_index_core.html.haml19
1 files changed, 10 insertions, 9 deletions
diff --git a/app/views/sip_accounts/_index_core.html.haml b/app/views/sip_accounts/_index_core.html.haml
index e94db83..bc1555f 100644
--- a/app/views/sip_accounts/_index_core.html.haml
+++ b/app/views/sip_accounts/_index_core.html.haml
@@ -8,9 +8,10 @@
%th
%span.hidden-phone
= t('sip_accounts.index.phone_numbers')
- %th
- %span.hidden-phone
- = t('phones.name')
+ - if sip_accounts.map{ |sip_account| sip_account.phone_sip_accounts.any? }.include?(true)
+ %th
+ %span.hidden-phone
+ = t('phones.name')
%tbody
- for sip_account in sip_accounts
@@ -26,9 +27,9 @@
%td
- if sip_account.phone_numbers.count > 0
= render 'phone_numbers/listing', :phone_numbers => sip_account.phone_numbers.order(:number)
-
- %td
- %span.hidden-phone
- - sip_account.phones.each do |phone|
- = link_to phone.to_s, method( :"#{phone.phoneable_type.underscore}_phone_path" ).( phone.phoneable_id, phone )
- =render :partial => 'shared/index_view_edit_destroy_part', :locals => {:parent => sip_account.sip_accountable, :child => sip_account} \ No newline at end of file
+ - if sip_accounts.map{ |sip_account| sip_account.phone_sip_accounts.any? }.include?(true)
+ %td
+ %span.hidden-phone
+ - sip_account.phones.each do |phone|
+ = link_to phone.to_s, method( :"#{phone.phoneable_type.underscore}_phone_path" ).( phone.phoneable_id, phone )
+ =render :partial => 'shared/index_view_edit_destroy_part', :locals => {:parent => sip_account.sip_accountable, :child => sip_account}