parent
5d6db5aea5
commit
4176c1afcd
@ -0,0 +1,16 @@
|
|||||||
|
body {
|
||||||
|
font-size: small;
|
||||||
|
color: #3B3B3B;
|
||||||
|
font-family: "Lucida Console", Monaco, monospace;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
text-align: center;
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin: 1px;
|
||||||
|
padding: 0px;
|
||||||
|
}
|
@ -0,0 +1,28 @@
|
|||||||
|
<!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>
|
Loading…
Reference in new issue