From 060e26510770185b8e067f79a1a0c6b3165f1e76 Mon Sep 17 00:00:00 2001 From: Andreas Granig Date: Thu, 11 Dec 2014 14:08:48 +0100 Subject: [PATCH] MT#7153 Add length dropdown in customer. Allow to show more than 5 entries for subscribers and groups. --- share/templates/customer/details.tt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/share/templates/customer/details.tt b/share/templates/customer/details.tt index e5d704d036..dd2bb0f047 100644 --- a/share/templates/customer/details.tt +++ b/share/templates/customer/details.tt @@ -184,6 +184,7 @@ [% helper.name = c.loc('Subscribers'); helper.identifier = 'subscribers'; + helper.length_change = 1; helper.dt_columns = subscriber_dt_columns; helper.ajax_uri = c.uri_for_action('/customer/subscriber_ajax', [ c.req.captures.0 ]); @@ -236,6 +237,7 @@ [% helper.name = c.loc('PBX Groups'); helper.identifier = 'pbx_groups'; + helper.length_change = 1; helper.dt_columns = pbxgroup_dt_columns; helper.ajax_uri = c.uri_for_action('/customer/pbx_group_ajax', [ c.req.captures.0 ]);