{% extends 'generic/object.html' %}
{% load helpers %}
{% load plugins %}
{% block content %}
Name |
{{ object.name }} |
Label |
{{ object.label|placeholder }} |
Type |
{{ object.get_type_display }} |
Description |
{{ object.description|placeholder }} |
Required |
{% checkmark object.required %} |
Weight |
{{ object.weight }} |
Default Value |
{{ object.default }} |
Choices |
{% if object.choices %}
{{ object.choices|join:", " }}
{% else %}
—
{% endif %}
|
Filter Logic |
{{ object.get_filter_logic_display }} |
{% plugin_left_page object %}
{% for ct in object.content_types.all %}
{{ ct }} |
{% endfor %}
Minimum Value |
{{ object.validation_minimum|placeholder }} |
Maximum Value |
{{ object.validation_maximum|placeholder }} |
Regular Expression |
{% if object.validation_regex %}
{{ object.validation_regex }}
{% else %}
—
{% endif %}
|
{% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}