2026-03-11 13:59:43 -04:00
|
|
|
{% extends "core/base.html" %}
|
|
|
|
|
{% load lyric_extras %}
|
|
|
|
|
|
2026-03-11 14:50:08 -04:00
|
|
|
{% block title_text %}Dashnotes{% endblock title_text %}
|
|
|
|
|
{% block header_text %}<span>Dash</span>notes{% endblock header_text %}
|
2026-03-11 13:59:43 -04:00
|
|
|
|
|
|
|
|
{% 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 %}
|