{% load powercrud powercrud_bootstrap5 %} {% if enable_selection_controls %}{% endif %} {% for cell in row.cells %} {% if cell.is_inline_editable and form %}{% with inline_field=form|get_form_field:cell.name %}{% if inline_field %}
{% bootstrap5_field inline_field small=True error_suffix="_inline_error" include_help=False %}
{% if inline_field.errors %}
{{ inline_field.errors|join:", " }}
{% endif %} {% else %}{{ cell.value }}{% endif %}{% endwith %} {% else %}
{{ cell.value }}
{% endif %} {% endfor %} {% csrf_token %}{% for hidden_field in inline_hidden_fields %}{{ hidden_field.as_hidden }}{% endfor %} {% if form.non_field_errors %}
{{ form.non_field_errors|join:", " }}
{% endif %}