✏️ 正在编辑: recurring_payment.tpl
路径:
/home/bpioifn/www/pigmentse/modules/axepta/views/templates/front/recurring_payment.tpl
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
{* * 1961-2016 BNP Paribas * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/afl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@prestashop.com so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to http://www.prestashop.com for more information. * * @author Quadra Informatique <modules@quadra-informatique.fr> * @copyright 1961-2016 BNP Paribas * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * *} {extends file='customer/page.tpl'} {block name='page_title'} {l s='My Recurring payments' mod='axepta'} {/block} {block name="page_content"} <section id="content" class="page-content"> {if count($payment_recurring_list)} <div class="block-center" id="block-history"> <table id="order-list" class="table table-striped table-bordered table-labeled"> <thead class="thead-default"> <tr> <th class="first_item footable-first-column" data-sort-ignore="true">{l s='Order' mod='axepta'}</th> <th data-hide="phone,tablet" class="item footable-sortable" >{l s='Recurring item' mod='axepta'}</th> <th data-sort-ignore="true" class="item">{l s='Next Payment' mod='axepta'}</th> <th data-hide="phone,tablet" class="item footable-sortable text-center">{l s='Amount (tax excluded)' mod='axepta'}</th> <th data-sort-ignore="true" class="item">{l s='State' mod='axepta'}</th> <th data-sort-ignore="true" class="item">{l s='Enable/disable' mod='axepta'}</th> </tr> </thead> <tbody> {foreach from=$payment_recurring_list item=payment name=myLoop} <tr class="{if $smarty.foreach.myLoop.first}first_item{elseif $smarty.foreach.myLoop.last}last_item{else}item{/if} {if $smarty.foreach.myLoop.index % 2}alternate_item{/if}"> <td class="history_link bold text-xs-center"><a class="color-myaccount" href="{$link->getPageLink('order-detail', true, NULL, "id_order={$payment.id_order|intval}")|escape:'html':'UTF-8'}"> {$payment.item_reference|escape:'html':'UTF-8'} </a></td> <td class="history">{$payment.item_name|escape:'html':'UTF-8'} <img src="{$link->getImageLink($payment.link_rewrite, $payment.item_image, 'small_default')|escape:'html'}" height="50" width="50" alt="{$payment.item_name|escape:'html':'UTF-8'}"/></td> <td class="history_date bold text-xs-center">{dateFormat date=$payment.next_schedule full=0}</td> <td class="history text-xs-center"><span itemprop="price" class="price" content="{$payment.amount_tax_exclude}">{$payment.amount_tax_exclude}</span></td> <td class="history text-xs-center">{$payment.status.name|escape:'htmlall':'UTF-8'} {if $payment.late > 0}{$payment.late|escape:'html':'UTF-8'} {l s='late payements' mod='axepta'}{/if}</td> <td class="history text-xs-center"> <form id="axepta_stop_recurring_unique_form_{$payment.id_axepta_customer_payment_recurring}" method="POST" action="{$url|escape:'htmlall':'UTF-8'}?id_axepta={$payment.id_axepta_customer_payment_recurring}"> <input type="hidden" name="axepta_stop_recurring_unique_form" value="1" /> <input type="hidden" name="id_axepta_customer_recurring_payment" value="{$payment.id_axepta_customer_payment_recurring}" /> <button class="stop_recurring" type="submit" form="axepta_stop_recurring_unique_form_{$payment.id_axepta_customer_payment_recurring}" class="btn btn-primary form-control-submit"> <span> {if $payment.status.name|escape:'htmlall':'UTF-8' == 'Active'} {l s='Paused' mod='axepta'} {else} {l s='Active' mod='axepta'} {/if} </span> </button> </form> </td> </tr> {/foreach} </tbody> </table> </div> {/if} </section> {/block}
💾 保存文件
← 返回文件管理器