CRM-21045: Multiple email field shown on Contribution Page.
[civicrm-core.git] / templates / CRM / Contribute / Form / PaymentInfoBlock.tpl
index c74a7339da2acb33bc5a97f99911df8a8d199276..0296b19b29410a187d50b5984cae8264a31417e3 100644 (file)
 {if !empty($payments)}
   <table class="selector row-highlight">
     <tr>
-      <th></th>
       <th>{ts}Amount{/ts}</th>
       <th>{ts}Type{/ts}</th>
       <th>{ts}Payment Method{/ts}</th>
       <th>{ts}Received{/ts}</th>
       <th>{ts}Transaction ID{/ts}</th>
       <th>{ts}Status{/ts}</th>
+      <th></th>
     </tr>
     {foreach from=$payments item=payment}
       <tr class="{cycle values="odd-row,even-row"}">
-        <td>{$payment.action}</td>
         <td>{$payment.total_amount|crmMoney:$payment.currency}</td>
         <td>{$payment.financial_type}</td>
         <td>{$payment.payment_instrument}{if $payment.check_number} (#{$payment.check_number}){/if}</td>
         <td>{$payment.receive_date|crmDate}</td>
         <td>{$payment.trxn_id}</td>
         <td>{$payment.status}</td>
+        <td>{$payment.action}</td>
       </tr>
     {/foreach}
   </table>