Removed trailing spaces.
[zzz-floof.git] / floof / templates / base.mako
index 7290a11..38226db 100644 (file)
@@ -17,8 +17,8 @@
 % endif
 
 ${h.form(h.url_for('search'), method='GET')}
-${h.text('query', c.query)} 
-${h.submit('button', 'Search')} 
+${h.text('query', c.query)}
+${h.submit('button', 'Search')}
 
 % if c.user:
 ${h.submit('button', 'Save')}
@@ -46,6 +46,17 @@ ${h.end_form()}
 
 
 </div>
+
+<% messages = h.flash.pop_messages() %>
+% if messages:
+<ul id="flash-messages">
+    % for message in messages:
+    <li>${message}</li>
+    % endfor
+</ul>
+% endif
+
+
 <div id="body">
 ${next.body()}
 </div>