Make qrcode generator create external URLs

This commit is contained in:
Cara Salter 2024-01-11 14:27:47 -05:00
parent 62a4efca71
commit ede69a3be6
No known key found for this signature in database
GPG key ID: A8A3A601440EADA5

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>