attendance-flask-mini-app/templates/template.html
2022-07-28 01:42:30 -05:00

19 lines
499 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Example</title>
</head>
<body>
<h1>QR Code:</h1>
<p>For URL <a href="{{ request.url_root + next_uuid }}">{{ request.url_root + next_uuid }}</a></p>
<img src="{{ qrcode(request.url_root + next_uuid, box_size=12, border=5) }}">
<h1>Last 10 users:</h1>
<li>
{% for hit in hits %}
<ul>{{ hit['created'] }}, {{ hit['user'] }}</ul>
{% endfor %}
</li>
</body>
</html>