From 6dc4eab14aad402d350e31aef2806b88bf457f84 Mon Sep 17 00:00:00 2001 From: Peter Kozak Date: Tue, 11 Jun 2013 11:18:43 +0200 Subject: limit displayed phones --- app/views/tenants/_table_of_phones.html.haml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'app/views/tenants/_table_of_phones.html.haml') 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) -- cgit v1.2.3