| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- {% extends 'generic/object.html' %}
- {% load helpers %}
- {% load plugins %}
- {% block content %}
- <div class="row mb-3">
- <div class="col col-12 col-md-6">
- <div class="card">
- <h2 class="card-header">Custom Field Choice Set</h2>
- <table class="table table-hover attr-table">
- <tr>
- <th scope="row">Name</th>
- <td>{{ object.name }}</td>
- </tr>
- <tr>
- <th scope="row">Description</th>
- <td>{{ object.description|markdown|placeholder }}</td>
- </tr>
- <tr>
- <th scope="row">Base Choices</th>
- <td>{{ object.get_base_choices_display|placeholder }}</td>
- </tr>
- <tr>
- <th scope="row">Choices</th>
- <td>{{ object.choices|length }}</td>
- </tr>
- <tr>
- <th scope="row">Order Alphabetically</th>
- <td>{% checkmark object.order_alphabetically %}</td>
- </tr>
- <tr>
- <th scope="row">Used by</th>
- <td>
- <ul class="list-unstyled mb-0">
- {% for cf in object.choices_for.all %}
- <li>{{ cf|linkify }}</li>
- {% endfor %}
- </ul>
- </td>
- </tr>
- </table>
- </div>
- {% plugin_left_page object %}
- </div>
- <div class="col col-12 col-md-6">
- <div class="card">
- <h2 class="card-header">Choices ({{ object.choices|length }})</h2>
- <table class="table table-hover">
- <thead>
- <tr>
- <th>Value</th>
- <th>Label</th>
- </tr>
- </thead>
- {% for value, label in choices %}
- <tr>
- <td>{{ value }}</td>
- <td>{{ label }}</td>
- </tr>
- {% endfor %}
- </table>
- {% include 'inc/paginator.html' with page=choices %}
- </div>
- {% plugin_right_page object %}
- </div>
- </div>
- <div class="row">
- <div class="col col-md-12">
- {% plugin_full_width_page object %}
- </div>
- </div>
- {% endblock %}
|