aboutsummaryrefslogtreecommitdiff
path: root/design
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2018-11-19 11:51:46 -0600
committerluxagraf <sng@luxagraf.net>2018-11-19 11:51:46 -0600
commit2ef6414abec4e606d0fd96babc849cc2bde2bb38 (patch)
treedf54a3a0e6d8f1f86a1530394f67087eb97ac34f /design
parenta0b95dc2dfb84c682bb8f677e5d471f84e5028fe (diff)
Updated notes to default to private and changed body_markdown to body
Diffstat (limited to 'design')
-rw-r--r--design/templates/notes/notes_list.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/design/templates/notes/notes_list.html b/design/templates/notes/notes_list.html
new file mode 100644
index 0000000..4451588
--- /dev/null
+++ b/design/templates/notes/notes_list.html
@@ -0,0 +1,9 @@
+{% extends 'base.html' %}
+{% block content %}
+<main>
+ <h1> Notes</h1>
+ <ul>{% for obj in object_list %}
+ <li><a href="{{obj.get_absolute_url}}">{{obj}}</a></li>
+ {% endfor %}</ul>
+</main>
+{% endblock %}