{{ include( 'NivaControlBundle:Shared:header.html.twig', { 'section': 'admin', 'mode': 'admin' } ) }} {{ include( 'NivaControlBundle:Shared:sidebar.html.twig', { 'section': 'admin', 'mode': 'admin', 'active': 'client' } ) }}

Synchronization Logs

{% for log in syncLogs %} {% endfor %}
Log ID Timestamp Action Status Before Status After Charge Successful? Fee Credits Error Code Raw Response
{{ log.logId }} {{ log.timestamp|date('Y-m-d H:i:s') }} {{ log.action }} {{ log.clientStatusBefore }} {{ log.clientStatusAfter }} {% if log.isSuccessful %} Yes {% else %} No {% endif %} {{ log.fee }} {{ log.credits }} {{ log.errorCode }}
{% if syncLogs[0] is not defined %}

Woah, no Sync logs found.

{% endif %}

Communication Logs

{% for log in commLogs %} {% endfor %}
Timestamp Action Status Before Status After Successful? Error Code Raw Response
{{ log.timestamp|date('Y-m-d H:i:s') }} {{ log.action }} {{ log.clientStatusBefore }} {{ log.clientStatusAfter }} {% if log.isSuccessful %} Yes {% else %} No {% endif %} {{ log.errorCode }}
{% if commLogs[0] is not defined %}

Woah, no Comm logs found.

{% endif %}
{{ include( 'NivaControlBundle:Shared:footer.html.twig' ) }}