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

Tools

{% if ready %}
{% csrf_token %}
{% endif %}

{% if not ready %}
Your integration configuration is incomplete or invalid. {{ configuration_readiness }} Please complete the configuration to start synchronizing tools data.
{% endif %} {% if ready %} Synchronize your tool data with the FabuBlox platform.
{% with paginator=page.paginator %} {% block pagination_header %}
{% if search_term %}Results for: {{ search_term }}{% endif %}
{% include "pagination/pagination_selector.html" %}
{% endblock %}
{% block pagination_content %} {% for tool in page %} {% endfor %}
{% include 'pagination/pagination_column.html' with order_by='name' name='Name' %} {% include 'pagination/pagination_column.html' with order_by='last_synced' name='Last Synchronized' %} {% include 'pagination/pagination_column.html' with order_by='last_synced_by' name='Synchronized By' %}
{{ tool }} {% if tool.last_synced %} {{ tool.last_synced|date:"F jS, Y g:i A" }} {% else %} Never synchronized {% endif %} {% if tool.last_synced_by %}{{ tool.last_synced_by }}{% endif %}
{% endblock %}
{% block pagination_footer %} {% endblock %} {% endwith %} {% endif %} {% endblock %}