First commit of POC version

This commit is contained in:
2026-01-01 21:07:34 +01:00
parent 3ea6e14d0e
commit 7ab655626a
65 changed files with 12372 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{% extends "base.html" %}
{% block content %}
<div class="list-group">
{% for il in ilists %}
<a class="list-group-item d-flex justify-content-between align-items-center" href="/items/{{ il.id }}">
{{ il.name }}
<span class="badge bg-primary rounded-pill">{{ il.items_left() }} / {{ il.items_total() }}</span>
</a>
{% endfor %}
</div>
<br/>
<a href="{{ url_for('lists.edit') }}"><img style="width: 3em; height: 3em" src="/static/edit.svg"></a>
{% endblock %}