Rearranged user/art relations.
[zzz-floof.git] / floof / templates / art / new.mako
index 4988917..2b18b42 100644 (file)
@@ -1,9 +1,26 @@
 <%inherit file="/base.mako" />
 
 <h1>Add New Art</h1>
-<p>Now: Upload a file.  Later: Supply a link?  Not exclusive to uploading.</p>
+${h.form(h.url('create_art'), multipart=True)}
 
-${h.form(h.url_for(controller='art', action='upload'), multipart=True)}
-${h.file('file')}
-${h.submit('submit', 'Upload!')}
-${h.end_form()}
\ No newline at end of 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)">
+<div>
+${field.label()|n}
+${field()|n} 
+%if field.errors:
+<ul class="errors">
+%for error in field.errors:
+<li>${error}
+%endfor
+</ul>
+%endif
+</div>
+</%def>