{% extends 'NEMO_fabublox_integration/base.html' %} {% load custom_tags_and_filters %} {% block title %}FabuBlox Synchronizations{% endblock %} {% block feature-tab %}

Synchronizations

Synchronized data may be delayed in appearing on FabuBlox due to background processing. Some updates may not appear if FabuBlox fails to process the data delivered from NEMO.

{% if has_in_progress %}
{% include 'NEMO_fabublox_integration/in_progress_synchronization.html' with in_progress=in_progress %}
{% endif %}

Synchronization History

{% with paginator=page.paginator %} {% block pagination_header %} {% endblock %}
{% block pagination_content %} {% for job in page %} {% endfor %}
{% include 'pagination/pagination_column.html' with order_by='created_at' name='Started On' %} {% include 'pagination/pagination_column.html' with order_by='started_by' name='Started By' %} Progress {% include 'pagination/pagination_column.html' with order_by='status' name='Status' %}
Tools Synchronization {{ job.created_at|date:"F jS, Y g:i A" }} {{ job.started_by }} {{ job.processed_items }} / {{ job.total_items }} {{ job.get_status_display }}
{% if job.failed_items > 0 %}
{% for item in job.failed_items_details %}
{{ item.item }}
{{ item.error }}
{% endfor %}
{% endif %}
{% endblock %}
{% block pagination_footer %} {% endblock %} {% endwith %}
{% endblock %}