Bugfix: Some spools that have had NFC tag in past were not showing correctly in the list

Bump version to 0.1.2
Improvement: Add screenshots
This commit is contained in:
Filip Bednárik
2024-12-15 20:51:18 +01:00
parent 890eaf9725
commit 5dd026479f
12 changed files with 42 additions and 4 deletions

View File

@ -14,7 +14,7 @@
<!-- Spool List -->
<div class="list-group">
{% for spool in spools %}
{% if not spool.extra.get("tag") or spool.extra.get("tag") == "null" %}
{% if not spool.extra.get("tag") or spool.extra.get("tag") == "\"\"" %}
<!-- Individual Spool Item -->
<a href="{{ url_for('write_tag', spool_id=spool.id) }}"
class="list-group-item list-group-item-action d-flex justify-content-between align-items-center">
@ -42,7 +42,7 @@
{% endif %}
{% endfor %}
{% for spool in spools %}
{% if spool.extra.get("tag") %}
{% if spool.extra.get("tag") and spool.extra.get("tag") != "\"\"" %}
<!-- Individual Spool Item -->
<a href="{{ url_for('write_tag', spool_id=spool.id) }}"
class="list-group-item list-group-item-action d-flex justify-content-between align-items-center">