{{ include( 'NivaLamboCallCenterBundle:old:Shared/header.html.twig' ) }}
{{ include( 'NivaLamboCallCenterBundle:old:Shared/sidebar.html.twig', { 'active': 'client' } ) }}
{% if error is defined and error %}
{% if error == 1 %} {# Could not unsubscribe client #}
Error! Could not unsubscribe {{ client.phoneNumber }}
from {{ club.clubName }}. Please try again later.
{% elseif error == 2 %} {# Client unsubscribed successfully #}
Success! Client {{ client.phoneNumber }} was successfully
unsubscribed from {{ club.clubName }}.
{% endif %}
{% endif %}
General Information
Status |
{% if client.status == 'A' %}Active
{% elseif client.status == 'S' %}Suspended
{% elseif client.status == 'C' %}Cancelled
{% else %}Pending
{% endif %}
|
Status of the client
|
MSISDN |
{{ client.getMsisdn() }} |
Complete MSISDN number (including country code)
|
{#
Credits |
{{ client.credits }} |
Current available credits for downloads
|
Total Charged |
${{ (client.totalCharged*0.01)|number_format(2, '.', ',') }} |
Total amount charged to client (no IVA)
|
#}
Events
Activation Time |
{% if client.activationTime %}
{{ client.activationTime|date('Y-m-d H:i:s') }} via {{ client.activationChannelText }}
{% else %}
None
{% endif %}
|
Timestamp of activation action
|
Last Charge Time |
{% if client.lastChargeTime %}
{{ client.lastChargeTime|date('Y-m-d H:i:s') }}
{% else %}
None
{% endif %}
|
Timestamp when the last successful charge was realized
|
Cancellation Time |
{% if client.cancellationTime %}
{{ client.cancellationTime|date('Y-m-d H:i:s') }} via {{ client.cancellationChannelText }}
{% else %}
None
{% endif %}
|
Timestamp of cancellation action
|
{{ include( 'NivaLamboCallCenterBundle:old:Shared/footer.html.twig' ) }}