Need to list items per-user
Without this important line, each user gets the same manifest. not helpful.
This commit is contained in:
parent
f9066d25d5
commit
a7b619a2fd
1 changed files with 1 additions and 0 deletions
|
@ -1020,6 +1020,7 @@ def manifest(request, form):
|
|||
|
||||
output = []
|
||||
for user in users_by_name:
|
||||
items = users[user]
|
||||
if hasattr(user, "checkin") and hasattr(user.checkin, "checkin_code"):
|
||||
code = user.checkin.checkin_code
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue