{% extends 'generic/object_detail.html' %} {% load helpers %} {% load render_table from django_tables2 %} {% block header %}
Sync Now

{% block title %}SSoT - {{ object }}{% endblock %}

{% endblock %} {% block content %}
{% if job_class.data_source_icon %} {% else %} {% endif %}

{% if job_class.data_target_icon %} {% else %} {% endif %}

{{ job_class.data_source }}

{{ job_class.data_target }}

{% if job_class.config_information %}
Configuration
{% for parameter, value in job_class.config_information.items %} {% endfor %}
Parameter Value
{{ parameter }} {% if value %}{{ value }}{% else %}—{% endif %}
{% endif %}
Data Mappings
{% for source_name, source_url, target_name, target_url in job_class.data_mappings %} {% empty %} {% endfor %}
{{ job_class.data_source }} {{ job_class.data_target }}
{% if source_url %} {{ source_name }} {% else %} {{ source_name }} {% endif %} {% if target_url %} {{ target_name }} {% else %} {{ target_name }} {% endif %}

Sync History

{% include table_template|default:'responsive_table.html' %}
{% endblock %}