{% 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" %}
{% 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 %}