aboutsummaryrefslogtreecommitdiffstats
path: root/notes/templates/edit.html
diff options
context:
space:
mode:
authorFilipp Lepalaan <f@0x00.co>2013-02-01 09:49:20 +0200
committerFilipp Lepalaan <f@0x00.co>2013-02-01 09:49:20 +0200
commit2e9cd65e869b8bd31e6e6ba66b52705c023af5ec (patch)
treefda1874e6338022ee5666330249650fe41193cf1 /notes/templates/edit.html
parentc0121b9b7f5041f6434a2e2dd24d3c68ed84b582 (diff)
downloadopus-2e9cd65e869b8bd31e6e6ba66b52705c023af5ec.tar.gz
opus-2e9cd65e869b8bd31e6e6ba66b52705c023af5ec.tar.bz2
opus-2e9cd65e869b8bd31e6e6ba66b52705c023af5ec.zip
Some improvementsHEADmaster
Diffstat (limited to 'notes/templates/edit.html')
-rw-r--r--notes/templates/edit.html13
1 files changed, 9 insertions, 4 deletions
diff --git a/notes/templates/edit.html b/notes/templates/edit.html
index 6d2ec1e..51c1e7d 100644
--- a/notes/templates/edit.html
+++ b/notes/templates/edit.html
@@ -3,14 +3,19 @@
{% block content %}
<div data-role="page">
<div data-role="header">
- <a href="/notes/" data-icon="arrow-l">Notes</a>
- <h1>New Note</h1>
- <a href="/notes/" id="done">Done</a>
+ <a href="/notes/" data-icon="arrow-l" data-ajax="false">Notes</a>
+ <h1>{{ note.title }}</h1>
+ <a href="#" id="done">Done</a>
</div>
<div data-role="content">
- <form action="" method="post" id="noteForm" enctype="multipart/form-data">
+ <form action="" method="post" id="noteForm" enctype="multipart/form-data" data-ajax="false">
{% csrf_token %}
{{ form }}
+ <ul data-role="listview" data-inset="true">
+ {% for a in note.attachment_set.all %}
+ <li><a href="/notes/{{ note.id }}/files/{{ a.id }}/delete/">{{ a.get_name }}</a></li>
+ {% endfor %}
+ </ul>
<button type="submit" data-theme="b">Save</button>
{% if form.is_bound %}
<a href="delete/" data-role="button">Delete</a>