new and refined tests for dashboard app; home iterates list w. django templating; views refined for redirect after post request

This commit is contained in:
Disco DeDisco
2025-12-31 14:39:26 -05:00
parent 1950eaa12e
commit c318a526fc
3 changed files with 30 additions and 17 deletions

View File

@@ -9,7 +9,9 @@
{% csrf_token %}
</form>
<table id="id-list-table">
<tr><td>1: {{ new_item_text }}</td></tr>
{% for item in items %}
<tr><td>1: {{ item.text }}</td></tr>
{% endfor %}
</table>
</body>
</html>