<%inherit file="/base/customer.mako" /> <%def name="heading()">

${_('View customer')}

${_('First name:')}${c.customer.person.firstname}
${_('Last name:')}${c.customer.person.lastname}
<%def name="footer()">

${h.link_to(_('All Customers'), h.url_for(controller='customer', action='list'))} | ${h.link_to(_('New Customer'), h.url_for(controller='customer', action='new'))} | ${h.link_to(_('Edit Customer'), h.url_for(controller='customer', action='edit', id=c.id))} | ${h.link_to(_('Delete Customer'), h.url_for(controller='customer', action='delete', id=c.id))}

${parent.footer()}