[collector views] prominently display Teil number
This commit is contained in:
parent
550843f2a8
commit
5bd66aeae8
3 changed files with 3 additions and 3 deletions
2
TODO.txt
2
TODO.txt
|
@ -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
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
<h1>{{ teil.name }}</h1>
|
||||
<h1>[{{ teil.id }}] {{ teil.name }}</h1>
|
||||
Last Changed: {{ teil.modified }}
|
||||
|
|
|
@ -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 %}
|
||||
|
|
Loading…
Add table
Reference in a new issue