view pylons_app/templates/payment_confirmation.html @ 8:3092016c6d0c

Changed to webapp, removed get from routes,
author Marcin Kuzminski
date Thu, 18 Feb 2010 17:36:43 +0100
parents 564e40829f80
children
line wrap: on
line source

## -*- coding: utf-8 -*-
<%inherit file="base/base.html"/>
<%def name="page_title()">
    ${_('Wire transfer confirmation')}
</%def>

<%def name="body()">
    <h3> ${h.link('Home','/')} / ${_('Wire transfer confirmation')}</h3>
        <table class="editor_disp">
		    % for k,v in c.form_result.items():
		      %if k not in ['_authentication_token','recipient','send']:
	              <tr>
	                  <td class="label">${k}</td>
	                  <td>${v}</td>
	              </tr>
	          %endif
		    % endfor
        </table>
</%def>