Hide waiting list vouchers in voucher list

This commit is contained in:
Raphael Michel
2018-07-21 13:00:48 +02:00
parent 54b906addb
commit 24739e1638
3 changed files with 9 additions and 5 deletions

View File

@@ -613,7 +613,7 @@ class QuotaView(ChartContainingView, DetailView):
'sum': True,
},
{
'label': ugettext('Vouchers'),
'label': ugettext('Vouchers and waiting list reservations'),
'value': self.object.count_blocking_vouchers(),
'sum': True,
},
@@ -623,7 +623,7 @@ class QuotaView(ChartContainingView, DetailView):
'sum': True,
},
{
'label': ugettext('Waiting list'),
'label': ugettext('Waiting list (pending)'),
'value': self.object.count_waiting_list_pending(),
'sum': False,
},