{% extends 'generic/object.html' %}
{% load helpers %}
{% load plugins %}
{% block content %}
Name |
{{ object.name }} |
Description |
{{ object.description|markdown|placeholder }} |
Base Choices |
{{ object.get_base_choices_display|placeholder }} |
Choices |
{{ object.choices|length }} |
Order Alphabetically |
{% checkmark object.order_alphabetically %} |
Used by |
{% for cf in object.choices_for.all %}
- {{ cf|linkify }}
{% endfor %}
|
{% plugin_left_page object %}
Value |
Label |
{% for value, label in choices %}
{{ value }} |
{{ label }} |
{% endfor %}
{% include 'inc/paginator.html' with page=choices %}
{% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}