diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/views/tenants/_table_of_phones.html.haml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/app/views/tenants/_table_of_phones.html.haml b/app/views/tenants/_table_of_phones.html.haml index e87191d..820afc7 100644 --- a/app/views/tenants/_table_of_phones.html.haml +++ b/app/views/tenants/_table_of_phones.html.haml @@ -2,6 +2,9 @@ -# Phones -# %h2= t('phones.index.page_title') - - if tenant.phones.any? + - if @tenant.phones.count <= GsParameter.get('NUMBER_OF_SHOWN_ITEMS') = render "phones/index_core", :phones => tenant.phones - = render :partial => 'shared/create_link', :locals => {:parent => tenant, :child_class => Phone} + = render :partial => 'shared/create_link', :locals => {:parent => tenant, :child_class => Phone} + - else + %p + = link_to t('phones.index.page_title'), tenant_phones_path(tenant) |