9 lines
433 B
Mako
9 lines
433 B
Mako
<%inherit file="/base/customer.mako" />
|
|
|
|
<ul id="customers">
|
|
% for customer in c.customers:
|
|
<li>${customer | h} [${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"))}
|
|
|