You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
444 B
28 lines
444 B
<!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> |