{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load i18n %} {% block content %}

{% trans "Saved Filter" %}

{% trans "Name" %} {{ object.name }}
{% trans "Description" %} {{ object.description|placeholder }}
{% trans "User" %} {{ object.user|placeholder }}
{% trans "Enabled" %} {% checkmark object.enabled %}
{% trans "Shared" %} {% checkmark object.shared %}
{% trans "Weight" %} {{ object.weight }}

{% trans "Assigned Models" %}

{% for object_type in object.object_types.all %} {% endfor %}
{{ object_type }}
{% plugin_left_page object %}

{% trans "Parameters" %}

{{ object.parameters|json }}
{% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}