## -*- coding: utf-8 -*- <%inherit file = "base/base.html"/> <%def name="page_title()"> ${_('Wire transfer')} %def> <%def name="body()">
${h.get_error('_authentication_token',c.form_errors)} | ||
${_('Account number')} | ${h.text('account_number',size=44,maxlength=38)} | ${h.get_error('account_number',c.form_errors)} |
${_('Title')} | ${h.textarea("title", "", cols=43, rows=5,maxlength=20)} | ${h.get_error('title',c.form_errors)} |
${_('Recipient')} | ${h.select('recipient',1,c.recipients_list)} | ${h.get_error('recipient',c.form_errors)} |
${_('Recipient address')} | ${h.text('recipient_address',size=44)} | ${h.get_error('recipient_address',c.form_errors)} |
${_('Amount')} | ${h.text('amount',size='7')}zł | ${h.get_error('amount',c.form_errors)} |
${h.submit('send',_('send'))} |