Add notes templates

master
Tait Hoyem 2 years ago
parent e43c761ab0
commit 277f0ad717

@ -0,0 +1,9 @@
{% extends "base" %}
{% block content %}
<form method="POST" action="/new/note">
<label for="note">Note</label>
<input id="note" name="content" type="text">
<input type="hidden" name="list_uuid" value="{{ list_uuid }}">
<input type="submit" value="Add Note">
</form>
{% endblock %}

@ -0,0 +1,8 @@
{% extends "base" %}
{% block content %}
<ul>
{% for note in notes %}
<li>{{ note.content }}</li>
{% endfor %}
</ul>
{% endblock %}
Loading…
Cancel
Save