pyalchemybiz/pyalchemybiz/templates/derived/customer/list.mako

10 lines
429 B
Mako

<%inherit file="/base/customer.mako" />
<ul id="customers">
% for customer in c.customers:
<li>${customer} [${h.link_to(_('view customer'), h.url_for(id=customer.id, action='view'))}] [${h.link_to(_('edit customer'), h.url_for(id=customer.id, action="edit"))}] [${h.link_to(_('delete customer'), h.url_for(id=customer.id, action="delete"))}]</li>
% endfor
</ul>
${h.link_to(_('create new customer'), h.url_for(action="new"))}