renamed List to Note everywhere thru-out project in preparation for complete overhaul of applet capabilities
This commit is contained in:
19
src/templates/apps/dashboard/my_notes.html
Normal file
19
src/templates/apps/dashboard/my_notes.html
Normal file
@@ -0,0 +1,19 @@
|
||||
{% extends "core/base.html" %}
|
||||
{% load lyric_extras %}
|
||||
|
||||
{% block header_text %}{{ user|display_name }}'s 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 %}
|
||||
Reference in New Issue
Block a user