X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/366dedf71b3cdd775251c7cea4b1519b44b37164..b07336c562d537ea3407d6a1c9fcb280dae7f514:/floof/templates/art/new.mako diff --git a/floof/templates/art/new.mako b/floof/templates/art/new.mako index 3eda527..2b18b42 100644 --- a/floof/templates/art/new.mako +++ b/floof/templates/art/new.mako @@ -1,9 +1,26 @@ <%inherit file="/base.mako" />

Add New Art

-

Now: Upload a file. Later: Supply a link? Not exclusive to uploading.

- ${h.form(h.url('create_art'), multipart=True)} -${h.file('file')} + +## Todo: write some macros to make outputting form fields easier. +${normal_field(c.form.file)} + ${h.submit(None, 'Upload!')} ${h.end_form()} + + + +<%def name="normal_field(field)"> +
+${field.label()|n} +${field()|n} +%if field.errors: + +%endif +
+