{% if enable_selection_controls %}
{% if bulk_selection_controls_template_paths %}
{% include bulk_selection_controls_template_paths with selection_control="row" %}
{% else %}
{% include "powercrud/packs/daisyui/partial/bulk_selection_controls.html" with selection_control="row" %}
{% endif %}
{% endif %}
{% for cell in row.cells %}
{% with value_str=cell.value|stringformat:"s" %}
{% if inline_enabled and row.inline_allowed and cell.is_inline_editable %}
{% with align_class=cell.align %}
{% endwith %}
{% elif inline_enabled and row.inline_blocked_label and cell.is_inline_editable %}
{% with align_class=cell.align %}
{% endwith %}
{% else %}
{% if cell.link %}
{{ cell.value }}
{% else %}
{{ cell.value }}
{% endif %}
{% endif %}
{% endwith %}
{% endfor %}
{% if has_row_actions %}