<!DOCTYPE html>
<html>
<head>
	<title>Printing QR labels</title>
	<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='printstyle.css') }}">
</head>
<body>


<table>
<tbody>
{% for row in codes %}
	<tr>
	{% for code in row %}
		<td>
		<img src="{{codegenURL}}{{code}}{{format}}" />
		<p>ELAB KNOWLEDGE SYSTEM</p>
		<p>{{systemURL}}{{code}}</p>
		</td>
	{% endfor %}
	</tr>
{% endfor %}
</tbody>
</table>


</body>
</html>