{% load powercrud %} {% load powercrud_partials %} {% if enable_selection_controls %} {% endif %} {% if row_actions_column_position == "start" %} {% partial inline_actions_cell %} {% 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 %}
{{ inline_field }}
{% if inline_field.errors %}
{{ inline_field.errors|join:", " }}
{% endif %} {% else %} {{ cell.value }} {% endif %} {% endwith %} {% else %}
{{ cell.value }}
{% endif %} {% endfor %} {% if row_actions_column_position != "start" %} {% partial inline_actions_cell %} {% endif %} {% partialdef inline_actions_cell %} {% 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 %}
{% endpartialdef inline_actions_cell %}