diff --git a/src/pretix/presale/views/customer.py b/src/pretix/presale/views/customer.py index 2b59b3cb9d..e7203db24f 100644 --- a/src/pretix/presale/views/customer.py +++ b/src/pretix/presale/views/customer.py @@ -400,7 +400,7 @@ class ProfileView(CustomerRequiredMixin, ListView): for o in ctx['orders']: if o.pk not in annotated: continue - o.count_positions = annotated.get(o.pk)['pcnt'] + o.pcnt = annotated.get(o.pk)['pcnt'] return ctx