Added possibility to just show all information contained in a barcode

This commit is contained in:
Jan Böhmer 2025-01-04 00:52:53 +01:00
parent f78532ae8a
commit e5d91dc8fc
7 changed files with 88 additions and 5 deletions

View file

@ -23,4 +23,22 @@
{{ form_end(form) }}
{% if infoModeData %}
<hr>
<h4>{% trans %}label_scanner.decoded_info.title{% endtrans %}</h4>
<table class="table table-striped table-hover table-bordered table-sm">
<tbody>
{% for key, value in infoModeData %}
<tr>
<td>{{ key }}</td>
<td><code>{{ value }}</code></td>
</tr>
{% endfor %}
</tbody>
</table>
{% endif %}
{% endblock %}