{% extends 'generic/object_detail.html' %} {% load buttons %} {% load helpers %} {% block buttons %} {% if perms.extras.add_customfield %} {% clone_button object %} {% endif %} {% if perms.extras.change_customfield %} {% edit_button object key="slug" %} {% endif %} {% if perms.extras.delete_customfield %} {% delete_button object key="slug" %} {% endif %} {% endblock buttons %} {% block content_left_page %}
| Name | {{ object.name }} |
| Type | {{ object.type | capfirst }} |
| Weight | {{ object.weight }} |
| Label | {{ object.label | placeholder }} |
| Grouping | {{ object.grouping | placeholder }} |
| Description | {{ object.description | render_markdown | placeholder }} |
| Required | {{ object.required | render_boolean }} |
| Default | {{ object.default }} |
| Filter Logic | {{ object.filter_logic | capfirst }} |
| Move to Advanced Tab | {{ object.advanced_ui | render_boolean }} |
| Value | Weight |
|---|---|
| {{ choice.value }} | {{ choice.weight }} |
| Content Types |
|
| Minimum Value | {{ object.validation_minimum | placeholder }} |
| Maximum Value Type | {{ object.validation_maximum | placeholder }} |
| Validation Regex |
{% if object.validation_regex %}
{{ object.validation_regex | placeholder }}
{% else %}
{{ object.validation_regex | placeholder }}
{% endif %}
|