projects
/
zzz-floof.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Removed trailing spaces.
[zzz-floof.git]
/
floof
/
templates
/
base.mako
diff --git
a/floof/templates/base.mako
b/floof/templates/base.mako
index
13126f7
..
38226db
100644
(file)
--- a/
floof/templates/base.mako
+++ b/
floof/templates/base.mako
@@
-17,8
+17,8
@@
% endif
${h.form(h.url_for('search'), method='GET')}
% 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')}
% if c.user:
${h.submit('button', 'Save')}
@@
-32,7
+32,7
@@
${h.end_form()}
<div id="user">
% if c.user:
<form action="${url(controller='account', action='logout')}" method="POST">
<div id="user">
% if c.user:
<form action="${url(controller='account', action='logout')}" method="POST">
- <p>Logged in as
${c.user.name}
. ${h.submit(None, 'Log out')}</p>
+ <p>Logged in as
<a href="${h.url('user_page', name=c.user.name)}">${c.user.name}</a>
. ${h.submit(None, 'Log out')}</p>
</form>
% else:
<form action="${url(controller='account', action='login_begin')}" method="POST">
</form>
% else:
<form action="${url(controller='account', action='login_begin')}" method="POST">
@@
-46,6
+46,17
@@
${h.end_form()}
</div>
</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>
<div id="body">
${next.body()}
</div>