projects
/
zzz-floof.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Thumbnailing.
[zzz-floof.git]
/
floof
/
templates
/
art
/
new.mako
diff --git
a/floof/templates/art/new.mako
b/floof/templates/art/new.mako
index
97cac9e
..
4204700
100644
(file)
--- a/
floof/templates/art/new.mako
+++ b/
floof/templates/art/new.mako
@@
-3,8
+3,31
@@
<h1>Add New Art</h1>
<p>Now: Upload a file. Later: Supply a link? Not exclusive to uploading.</p>
<h1>Add New Art</h1>
<p>Now: Upload a file. Later: Supply a link? Not exclusive to uploading.</p>
+## Todo: write some macros to make outputting form fields easier.
+
${h.form(h.url('create_art'), multipart=True)}
${h.form(h.url('create_art'), multipart=True)}
-Artist: ${h.text('artist')}
-${h.file('file')}
+
+${normal_field(c.form.by)}
+${normal_field(c.form.file)}
+
+
+##Artist: ${h.text('artist')}
+##${h.file('file')}
${h.submit(None, 'Upload!')}
${h.end_form()}
${h.submit(None, 'Upload!')}
${h.end_form()}
+
+
+
+<%def name="normal_field(field)">
+<div>
+${field.label()|n}
+${field()|n}
+%if field.errors:
+<ul class="errors">
+%for error in field.errors:
+<li>${error}
+%endfor
+</ul>
+%endif
+</div>
+</%def>