10 lines
254 B
Smarty
10 lines
254 B
Smarty
{if isset($customer_credit) && $customer_credit > 0}
|
|
<p class="bold">
|
|
{l s='Votre credit disponible' mod='invite'} : <span class="green">{$customer_credit}</span>
|
|
</p>
|
|
{else}
|
|
<p class="warning">
|
|
{l s='Aucun credit disponible.' mod='invite'}
|
|
</p>
|
|
{/if}
|