{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load i18n %} {% block content %}
{% trans "Config Template" %}
{% trans "Name" %} {{ object.name }}
{% trans "Description" %} {{ object.description|placeholder }}
{% trans "Data Source" %} {% if object.data_source %} {{ object.data_source }} {% else %} {{ ''|placeholder }} {% endif %}
{% trans "Data File" %} {% if object.data_file %} {{ object.data_file }} {% elif object.data_path %}
{{ object.data_path }} {% else %} {{ ''|placeholder }} {% endif %}
{% trans "Data Synced" %} {{ object.data_synced|placeholder }}
{% include 'inc/panels/tags.html' %} {% plugin_left_page object %}
{% trans "Environment Parameters" %}
{{ object.environment_params }}
{% plugin_right_page object %}
{% trans "Template" %}
{% include 'inc/sync_warning.html' %}
{{ object.template_code }}
{% plugin_full_width_page object %}
{% endblock %}