pyalchemybiz/pyalchemybiz/templates/derived/customer/new.mako

12 lines
397 B
Plaintext
Raw Normal View History

2009-03-07 12:38:23 +01:00
<%inherit file="/base/customer.mako" />
<%namespace file="fields.mako" name="fields" import="*"/>
2009-03-17 22:38:39 +01:00
${h.form(h.url_for(controller='customer', action='create'))}
2009-03-07 12:38:23 +01:00
<fieldset id="createcustomerform">
<legend>${_('Create new customer')}</legend>
${fields.body()}
2009-03-07 12:38:23 +01:00
${h.submit('submit', _('Add new customer'))}
</fieldset>
${h.end_form()}
<%def name="heading()"><h1>${_('Create new customer')}</h1></%def>