restored templates/apps/dashboard/ & its contents; inadvertently deleted in previous update; all UTs & FTs once again passing

This commit is contained in:
Disco DeDisco
2026-01-27 13:48:59 -05:00
parent d8da9051ff
commit fc05281351
2 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
{% extends "core/base.html" %}
{% block title_text %}Start a new to-do list{% endblock title_text %}
{% block header_text %}Start a new to-do list{% endblock header_text %}
{% block form_action %}{% url "new_list" %}{% endblock form_action %}

View File

@@ -0,0 +1,15 @@
{% extends "core/base.html" %}
{% block title_text %}Your to-do list{% endblock title_text %}
{% block header_text %}Your to-do list{% endblock header_text %}
{% block form_action %}{% url "view_list" list.id %}{% endblock form_action %}
{% block table %}
<table id="id_list_table" class="table">
{% for item in list.item_set.all %}
<tr><td>{{ forloop.counter }}. {{ item.text }}</td></tr>
{% endfor %}
</table>
{% endblock table %}