{% extends 'generic/object.html' %} {% load i18n %} {% load helpers %} {% block content %}
{% trans "Type Config" %}
{% trans "Name" %}{{ object.name }}
{% trans "Object Type" %}{{ object.content_type_label|placeholder }}
{% trans "Matching Class" %}{{ object.get_matching_class_display|placeholder }}
{% trans "Display Template" %}{{ object.display_template|placeholder }}
{% trans "Panel slugs" %} {% for slug in object.panel_slugs %} {% if not forloop.first %}, {% endif %}{{ slug }} {% empty %} {% endfor %}
{% trans "Sort order" %}{{ object.order_id }}
{% trans "Linkable in panel" %} {% if object.is_panel_linkable_disabled %} {% trans "Disabled" %} {% else %} {% with labels=object.panel_linkable_type_labels %} {% if labels %} {{ labels|join:", " }} {% else %} {% trans "All types" %} {% endif %} {% endwith %} {% endif %}
{% trans "Allow Virtual Groups" %}{% checkmark object.allow_virtual_groups %}
{% trans "Inherit from parent" %}{% checkmark object.inherit_links %}
{% trans "Stop inheritance if own link present" %}{% checkmark object.inherit_stop_on_own %}
{% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %}
{% endblock %}