pyalchemybiz/pyalchemybiz/templates/customer/index.mako
Jan Dittberner 08b4d46c84 add code for creating new customers
* update string catalog and german translation (addresses #11)
 * create new actions for adding customers in customers controller
   (addresses #12)

git-svn-id: file:///var/www/wwwusers/usr01/svn/pyalchemybiz/trunk@10 389c73d4-bf09-4d3d-a15e-f94a37d0667a
2009-01-18 22:42:51 +00:00

12 lines
307 B
Mako

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