Show Paid

This commit is contained in:
Ibnu Maksum 2024-03-15 10:56:08 +07:00
parent 850581d328
commit 6f5d49cd2f
No known key found for this signature in database
GPG Key ID: 7FC82848810579E5
2 changed files with 9 additions and 2 deletions

View File

@ -492,5 +492,6 @@
"Cash": "Cash",
"Payment_not_found": "Payment not found",
"If_your_friend_have_Additional_Cost__you_will_pay_for_that_too": "If your friend have Additional Cost, you will pay for that too",
"Cache_cleared_successfully_": "Cache cleared successfully!"
"Cache_cleared_successfully_": "Cache cleared successfully!",
"Paid": "Paid"
}

View File

@ -41,7 +41,13 @@
{if $customFields}
{foreach $customFields as $customField}
<li class="list-group-item">
<b>{$customField.field_name}</b> <span class="pull-right">{$customField.field_value}</span>
<b>{$customField.field_name}</b> <span class="pull-right">
{if strpos($customField.field_value, ':0') === false}
{$customField.field_value}
{else}
<b>{Lang::T('Paid')}</b>
{/if}
</span>
</li>
{/foreach}
{/if}