{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load i18n %} {% block content %}
{% trans "Forward Source" %}
{% trans "Name" %} {{ object.name }}
{% trans "Type" %} {{ object.get_type_display }}
{% trans "Status" %} {{ object.get_status_display }}
{% trans "Last synced" %} {{ object.last_synced|placeholder }}
{% trans "Description" %} {{ object.description|placeholder }}
{% trans "Base URL" %} {{ object.url }}
{% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %} {% plugin_left_page object %}
{% trans "Parameters" %}
{% for name, value in masked_parameters.items %} {% empty %} {% endfor %}
{{ name|capfirst }} {{ value|placeholder }}
{% trans "No parameters defined" %}
{% trans "Tag Scope Preview" %}
{% if tag_scope_preview.enabled %}
{% trans "Network" %} {{ tag_scope_preview.network_id|placeholder }}
{% trans "Include Tags" %} {{ tag_scope_preview.include_tags|join:", "|placeholder }}
{% trans "Include Match" %} {{ tag_scope_preview.include_match|capfirst }}
{% trans "Exclude Tags" %} {{ tag_scope_preview.exclude_tags|join:", "|placeholder }}
{% trans "Total Devices" %} {{ tag_scope_preview.total_devices|placeholder }}
{% trans "Matched Devices" %} {{ tag_scope_preview.matched_devices|placeholder }}
{% trans "Excluded by Scope" %} {{ tag_scope_preview.excluded_devices|placeholder }}
{% if tag_scope_preview.error %}
{{ tag_scope_preview.error }}
{% endif %} {% else %} {% trans "No include/exclude tags configured for this source." %} {% endif %}
{% include 'extras/inc/configcontext_data.html' with title="Parameters" data=masked_parameters format="json" copyid="forward-source-parameters" %}
{% include 'inc/panels/custom_fields.html' %} {% plugin_right_page object %}
{% endblock %}