found some lingering List references in the template dir; summarily changed to Note

This commit is contained in:
Disco DeDisco
2026-03-11 14:10:56 -04:00
parent f45740d8b3
commit 50ee983e27
4 changed files with 8 additions and 8 deletions

View File

@@ -1,8 +1,8 @@
{% extends "core/base.html" %}
{% load lyric_extras %}
{% block title_text %}Your to-do list{% endblock title_text %}
{% block header_text %}Your to-do list{% endblock header_text %}
{% block title_text %}Your note{% endblock title_text %}
{% block header_text %}Your note{% endblock header_text %}
{% block extra_header %}
@@ -13,7 +13,7 @@
{% block content %}
<div class="row justify-content-center">
<div class="col-lg-6">
<small>List created by: <span id="id_note_owner">{{ note.owner|display_name }}</span></small>
<small>Note created by: <span id="id_note_owner">{{ note.owner|display_name }}</span></small>
<table id="id_note_table" class="table">
{% for item in note.item_set.all %}
<tr><td>{{ forloop.counter }}. {{ item.text }}</td></tr>
@@ -43,7 +43,7 @@
<button type="submit" class="btn btn-primary btn-xl">Share</button>
</form>
<small>List shared with:
<small>Note shared with:
{% for user in note.shared_with.all %}
<span class="note-recipient">{{ user|display_name }}</span>
{% endfor %}