forked from kevinowino869/mitrobill
Payment info
This commit is contained in:
@ -31,7 +31,7 @@
|
||||
<br>
|
||||
<p class="help-block">{Lang::T('Sometimes you need to refresh 3 times until content change')}</p>
|
||||
<input type="text" class="form-control" onclick="this.select()" readonly
|
||||
value="{$app_url}/pages/{$PageFile}.html">
|
||||
value="{$app_url}/{$PAGES_PATH}/{$PageFile}.html">
|
||||
</div>
|
||||
{else}
|
||||
<div class="panel-footer">
|
||||
@ -54,10 +54,10 @@
|
||||
{if $action=='Voucher'}
|
||||
<div class="col-md-4">
|
||||
{foreach $vouchers as $v}
|
||||
{if is_file("pages/vouchers/$v")}
|
||||
{if is_file("$PAGES_PATH/vouchers/$v")}
|
||||
<div class="panel mb20 panel-primary panel-hovered" style="cursor: pointer;" onclick="selectTemplate(this)">
|
||||
<div class="panel-heading">{str_replace(".html", '', $v)}</div>
|
||||
<div class="panel-body">{include file="pages/vouchers/$v"}</div>
|
||||
<div class="panel-body">{include file="$PAGES_PATH/vouchers/$v"}</div>
|
||||
</div>
|
||||
{/if}
|
||||
{/foreach}
|
||||
|
@ -1,7 +1,15 @@
|
||||
{include file="user-ui/header.tpl"}
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-6 col-md-offset-3">
|
||||
{if file_exists("$PAGES_PATH/Payment_Info.html")}
|
||||
<div class="col-md-6">
|
||||
<div class="panel panel-info panel-hovered">
|
||||
<div class="panel-heading">{Lang::T('Payment Info')}</div>
|
||||
<div class="panel-body">{include file="$PAGES_PATH/Payment_Info.html"}</div>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
<div class="{if file_exists("$PAGES_PATH/Payment_Info.html")}col-md-6{else}col-md-6 col-md-offset-3{/if}">
|
||||
<div class="panel panel-info panel-hovered">
|
||||
<div class="panel-heading">{Lang::T('Available Payment Gateway')}</div>
|
||||
<div class="panel-footer">
|
||||
@ -27,7 +35,7 @@
|
||||
{if $plan['is_radius'] or $plan['routers']}
|
||||
<li class="list-group-item">
|
||||
<b>{Lang::T('Location')}</b> <span class="pull-right">{if
|
||||
$plan['is_radius']}Radius{else}{$plan['routers']}
|
||||
$plan['is_radius']}Radius{else}{$plan['routers']}
|
||||
{/if}</span>
|
||||
</li>
|
||||
{/if}
|
||||
|
Reference in New Issue
Block a user