home.html & list.html templates no longer feature hardcoded urls (replaced w. django templating)

This commit is contained in:
Disco DeDisco
2026-01-19 19:17:43 -05:00
parent 91ede73e89
commit 0b0ae6d5b0
2 changed files with 2 additions and 2 deletions

View File

@@ -3,4 +3,4 @@
{% 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 %}/apps/dashboard/newlist{% endblock form_action %}
{% block form_action %}{% url "new_list" %}{% endblock form_action %}

View File

@@ -3,7 +3,7 @@
{% block title_text %}Your to-do list{% endblock title_text %}
{% block header_text %}Your to-do list{% endblock header_text %}
{% block form_action %}/apps/dashboard/{{ list.id }}/{% endblock form_action %}
{% block form_action %}{% url "view_list" list.id %}{% endblock form_action %}
{% block table %}
<table id="id-list-table" class="table">