Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update paystack.tpl #2

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions ui/paystack.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div class="row">
<div class="col-sm-12 col-md-12">
<div class="panel panel-primary panel-hovered panel-stacked mb30">
<div class="panel-heading">Paystack Payment Gateway</div>
<div class="panel-heading">{Lang::T('Paystack Payment Gateway')}</div>
<div class="panel-body">
<div class="form-group">
<label class="col-md-2 control-label">Paystack Secret Key</label>
Expand All @@ -17,15 +17,15 @@
</div>

<div class="form-group">
<label class="col-md-2 control-label">Payment Channels</label>
<label class="col-md-2 control-label">{Lang::T('Payment Channels')}</label>
<div class="col-md-6">
{foreach $channel as $payment_options}
<label class="checkbox-inline"><input type="checkbox" {if strpos($_c['paystack_channel'], $payment_options['id']) !== false}checked="true"{/if} id="paystack_channel" name="paystack_channel[]" value="{$payment_options['id']}"> {$payment_options['name']}</label>
{/foreach}
</div>
</div>
<div class="form-group">
<label class="col-md-2 control-label">Currency</label>
<label class="col-md-2 control-label">{Lang::T('Currency')}</label>
<div class="col-md-6">
<select class="form-control" name="paystack_currency">
{foreach $cur as $currency}
Expand All @@ -41,14 +41,14 @@
<div class="form-group">
<div class="col-lg-offset-2 col-lg-10">
<button class="btn btn-primary waves-effect waves-light"
type="submit">{$_L['Save']}</button>
type="submit">{$_L['Save Change']}</button>
</div>
</div>
<pre>/ip hotspot walled-garden
add dst-host=paystack.com
add dst-host=*.paystack.com</pre>
<small class="form-text text-muted">Set Telegram Bot to get any error and
notification</small>
<small class="form-text text-muted">{Lang::T('Set Telegram Bot to get any error and
notification')}</small>
</div>
</div>

Expand Down