manage.py changed to lf; FTs tweaked to accomodate WSL2 ansible deployment

This commit is contained in:
Disco DeDisco
2026-01-13 20:58:05 -05:00
parent d942839308
commit 4b137db317
21 changed files with 881 additions and 848 deletions

View File

@@ -1,6 +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 %}/apps/dashboard/newlist{% endblock form_action %}
{% 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 %}/apps/dashboard/newlist{% endblock form_action %}

View File

@@ -1,15 +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 %}/apps/dashboard/{{ list.id }}/add-item{% 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 %}
{% 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 %}/apps/dashboard/{{ list.id }}/add-item{% 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 %}