{# Read-only cell that can be clicked to edit #} {% if config.choices %} {% for val, label in config.choices %} {% if val == value %}{{ label }}{% endif %} {% endfor %} {% elif config.type == 'number' and value is not None %} {{ value|floatformat:2 }} {% else %} {{ value|default:"-" }} {% endif %}