pyalchemybiz/pyalchemybiz/templates/customer.mako

10 lines
236 B
Plaintext
Raw Normal View History

<%inherit file="base.mako" />
<h1>Hallo</h1>
<ul id="customers">
% for customer in c.customers:
<li>${customer.firstname}&nbsp;${customer.lastname} [${h.link_to('edit', h.url_for(id=customer.id, action="edit"))}]</li>
% endfor
</ul>