{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load i18n %} {% block content %}
{% trans "Forward NQE Map" %}
{% trans "Name" %} {{ object.name }}
{% trans "NetBox Model" %} {{ object.model_string }}
{% trans "Execution" %} {% if object.query_id %} {% trans "Query ID" %} {% else %} {% trans "Raw Query" %} {% endif %}
{% trans "Query ID" %} {{ object.query_id|placeholder }}
{% trans "Commit ID" %} {{ object.commit_id|placeholder }}
{% trans "Enabled" %} {{ object.enabled|yesno:"Yes,No" }}
{% trans "Built-in" %} {{ object.built_in|yesno:"Yes,No" }}
{% trans "Weight" %} {{ object.weight }}
{% include 'inc/panels/custom_fields.html' %} {% plugin_left_page object %}
{% trans "NQE Query" %}
{% if object.query %}
{{ object.query }}
{% else %} {% trans "This map uses Query ID execution. The raw Query field is intentionally blank." %} {% endif %}
{% include 'extras/inc/configcontext_data.html' with title="Parameters" data=object.parameters format="json" copyid="forward-nqe-map-parameters" %}
{% plugin_right_page object %}
{% endblock %}