{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load i18n %} {% block extra_controls %} {% if perms.forward_netbox.run_forwardsync %} {% if object.ready_for_sync %}
{% csrf_token %}
{% else %} {% endif %} {% endif %} {% endblock extra_controls %} {% block content %}
{% trans "Sync Information" %}
{% trans "Name" %} {{ object.name }}
{% trans "Source" %} {{ object.source.name }}
{% trans "Status" %} {{ object.get_status_display }}
{% trans "Last synced" %} {{ object.last_synced|placeholder }}
{% trans "Latest ingestion" %} {% if object.last_ingestion %} {{ object.last_ingestion.name }} {% else %} {{ ""|placeholder }} {% endif %}
{% trans "Network" %} {{ object.get_network_id|placeholder }}
{% trans "Snapshot Selection" %} {{ object.get_snapshot_id|placeholder }}
{% trans "Schedule" %} {{ object.scheduled|placeholder }}
{% trans "Interval" %} {{ object.interval|placeholder }}
{% trans "User" %} {{ object.user|placeholder }}
{% trans "Auto merge" %} {{ object.auto_merge|yesno:"Yes,No" }}
{% include 'inc/panels/tags.html' %} {% plugin_left_page object %}
{% trans "Enabled Models" %}
{% if enabled_models %}
    {% for model_string in enabled_models %}
  • {{ model_string }}
  • {% endfor %}
{% else %} {% trans "No models selected" %} {% endif %}
{% include 'extras/inc/configcontext_data.html' with title="Parameters" data=object.get_display_parameters format="json" copyid="forward-sync-parameters" %}
{% include 'inc/panels/custom_fields.html' %} {% plugin_right_page object %}
{% endblock %}