simplified vars & args in view_list() FBV in apps.dashboard.views; extended dynamic list handling to django templating in list.html

This commit is contained in:
Disco DeDisco
2026-01-03 01:36:37 -05:00
parent ada383c81a
commit 7425b14363
2 changed files with 2 additions and 3 deletions

View File

@@ -9,7 +9,7 @@
{% csrf_token %}
</form>
<table id="id-list-table">
{% for item in items %}
{% for item in list.item_set.all %}
<tr><td>{{ forloop.counter }}. {{ item.text }}</td></tr>
{% endfor %}
</table>