##// END OF EJS Templates
initial commit.
initial commit.

File last commit:

r0:564e4082 default
r0:564e4082 default
Show More
payment_confirmation.html
18 lines | 551 B | text/html | HtmlLexer
/ pylons_app / templates / payment_confirmation.html
Marcin Kuzminski
initial commit.
r0 ## -*- 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>