Duitku ok

This commit is contained in:
Ibnu Maksum
2022-09-14 16:54:29 +07:00
parent 8a8c7f897f
commit cef6e2a2f6
4 changed files with 157 additions and 17 deletions

19
ui/ui/duitku_channel.tpl Normal file
View File

@ -0,0 +1,19 @@
{include file="sections/user-header.tpl"}
<div class="row">
<div class="col-sm-12">
<div class="panel panel-info panel-hovered">
<div class="panel-heading">Duitku {Lang::T('Payment Channel')}</div>
<div class="panel-body row">
{foreach $channels as $channel}
{if in_array($channel['id'], $duitku_channels)}
<div class="col-sm-4 mb20">
<a href="{$_url}order/buy/{$path}/{$channel['id']}"
onclick="return confirm('{$channel['name']}')"
class="btn btn-block btn-default">{$channel['name']}</a>
</div>
{/if}
{/foreach}
</div>
</div>
</div>
{include file="sections/user-footer.tpl"}