[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] export data
|
||||||
[x] import exported data
|
[x] import exported data
|
||||||
[ ] display Teil-number
|
[x] display Teil-number
|
||||||
[ ] export CSV/excel/markdown for printing
|
[ ] export CSV/excel/markdown for printing
|
||||||
[x] split requirements into prod, test, dev
|
[x] split requirements into prod, test, dev
|
||||||
[ ] improve handling of settings for prod, test, and dev: avoid all those if statements
|
[ ] 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 }}
|
Last Changed: {{ teil.modified }}
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
{% for teil in teile_list %}
|
{% for teil in teile_list %}
|
||||||
<li>
|
<li>
|
||||||
<a href="{% url 'collector:detail' teil.id %}">
|
<a href="{% url 'collector:detail' teil.id %}">
|
||||||
{{ teil.name }}
|
<strong>[{{ teil.id }}]</strong> {{ teil.name }}
|
||||||
</a> ({{ teil.modified }})
|
</a> ({{ teil.modified }})
|
||||||
</li>
|
</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue