Files
python-tdd/src/templates/apps/dashboard/my_notes.html
Disco DeDisco 8807d31274
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
unified header_title template values across dashboard applet destination pages; styled &/ added applet titles across all applets
2026-03-11 14:50:08 -04:00

21 lines
638 B
HTML

{% extends "core/base.html" %}
{% load lyric_extras %}
{% block title_text %}Dashnotes{% endblock title_text %}
{% block header_text %}<span>Dash</span>notes{% endblock header_text %}
{% block content %}
<h3>{{ owner|display_name }}'s notes</h3>
<ul>
{% for note in owner.notes.all %}
<li><a href="{{ note.get_absolute_url }}">{{ note.name }}</a></li>
{% endfor %}
</ul>
<h3>Notes shared with me</h3>
<ul>
{% for note in owner.shared_notes.all %}
<li><a href="{{ note.get_absolute_url }}">{{ note.name }}</a></li>
{% endfor %}
</ul>
{% endblock content %}