Home
% if c.user:
| Add Art
| Your Searches
| Watchstream
## | Your Page
% endif
${h.form(url('search'), method='GET')}
${h.text('query', c.query)}
${h.submit('button', 'Search')}
% if c.user:
${h.submit('button', 'Save')}
% endif
## Note: should probably only display "save" when we're on a results page
## Also, what if we had it save a hidden form containing the search result that was
## actually rendered? Might be confusing though.
${h.end_form()}
% if c.user:
% else:
% endif
<% messages = h.flash.pop_messages() %>
% if messages: