diff --git a/pylons_app/templates/index2.html b/pylons_app/templates/index2.html deleted file mode 100644 --- a/pylons_app/templates/index2.html +++ /dev/null @@ -1,110 +0,0 @@ - ## -*- 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'))} | -|