Merge pull request #24 from wpi-acm/meal-checkin

Make qrcode generator create external URLs
This commit is contained in:
Cara Salter 2024-01-11 14:28:26 -05:00 committed by GitHub
commit 9144ad89b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,5 +2,6 @@
<title>QR Code for {{ event.name }}</title> <title>QR Code for {{ event.name }}</title>
</head> </head>
<body> <body>
<img src="{{ qrcode(url_for('events.workshop_checkin', id=event.id)) }}"> <img src="{{ qrcode(url_for('events.workshop_checkin', id=event.id,
_external=True)) }}">
</body> </body>