aboutsummaryrefslogtreecommitdiffstats
path: root/servo/views/customer.py
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2015-09-10 14:32:59 +0300
committerFilipp Lepalaan <filipp@mac.com>2015-09-10 14:32:59 +0300
commit7b6774fba294988693ea227717dc789db898072c (patch)
tree1cacde2cfce1ba02920eb6f28a50bc3a1dfac6ef /servo/views/customer.py
parent444ec48edc2323d82818195709bce66db7b1ef8b (diff)
downloadServo-7b6774fba294988693ea227717dc789db898072c.tar.gz
Servo-7b6774fba294988693ea227717dc789db898072c.tar.bz2
Servo-7b6774fba294988693ea227717dc789db898072c.zip
UI improvements
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())