diff options
author | 2018-06-12 14:49:44 +0100 | |
---|---|---|
committer | 2018-06-12 14:49:44 +0100 | |
commit | 38e81eb20af8dc0d652b5f8b927db620db52c62b (patch) | |
tree | b1a36c76cf84389acb9c3f836a9beef70fc3d74b /pysite | |
parent | It's always the smallest changes that don't lint (diff) |
[Jams] User ID and avatar on approvals page
Diffstat (limited to 'pysite')
-rw-r--r-- | pysite/views/staff/jams/participants.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pysite/views/staff/jams/participants.py b/pysite/views/staff/jams/participants.py index 6b95db76..fa27cfe0 100644 --- a/pysite/views/staff/jams/participants.py +++ b/pysite/views/staff/jams/participants.py @@ -46,6 +46,8 @@ class StaffView(RouteView, DBMixin): for question in form_obj["questions"]: questions[question] = self.db.get(self.questions_table, question) + print(jam_data) + return self.render( "staff/jams/participants.html", jam=jam_data, form=form_obj, questions=questions |