Use the fixed template, not the version straight out of the db

This commit is contained in:
James Polley 2018-01-15 02:57:39 +11:00
parent 1a2b4f4688
commit 30e65e65a6

View file

@ -52,7 +52,7 @@ def boardingpass(request):
boardingpass = boardingpass.replace(not_qrcode_string, qrcode_string)
ctx = { 'attendee': user.attendee,
'boardingpass': checkin.boardingpass.html_body
'boardingpass': boardingpass
}
response = render(request, "regidesk/boardingpass.html", ctx)