aboutsummaryrefslogtreecommitdiffstats
path: root/servo/views/customer.py
diff options
context:
space:
mode:
Diffstat (limited to 'servo/views/customer.py')
-rw-r--r--servo/views/customer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/servo/views/customer.py b/servo/views/customer.py
index 455126e..71beff5 100644
--- a/servo/views/customer.py
+++ b/servo/views/customer.py
@@ -346,7 +346,7 @@ def search(request):
if kind == 'contact':
customers = customers.filter(is_company=False)
- title = _('Search results for "%s"') % query
+ title = _('%d results for "%s"') % (customers.count(), query)
return render(request, "customers/search.html", locals())