[collector views] prominently display Teil number

This commit is contained in:
bronsen 2025-03-13 20:08:54 +01:00
parent 550843f2a8
commit 5bd66aeae8
3 changed files with 3 additions and 3 deletions
TODO.txt
collector/templates/collector

View file

@ -1,6 +1,6 @@
[x] export data
[x] import exported data
[ ] display Teil-number
[x] display Teil-number
[ ] export CSV/excel/markdown for printing
[x] split requirements into prod, test, dev
[ ] improve handling of settings for prod, test, and dev: avoid all those if statements

View file

@ -1,2 +1,2 @@
<h1>{{ teil.name }}</h1>
<h1>[{{ teil.id }}] {{ teil.name }}</h1>
Last Changed: {{ teil.modified }}

View file

@ -4,7 +4,7 @@
{% for teil in teile_list %}
<li>
<a href="{% url 'collector:detail' teil.id %}">
{{ teil.name }}
<strong>[{{ teil.id }}]</strong> {{ teil.name }}
</a> ({{ teil.modified }})
</li>
{% endfor %}