{% comment %} Reusable entity row component Required context variables: - item: the object to display - entity_type: e.g., 'substance', 'polymer', 'mixture', 'isotope', 'reaction' - columns: list of column definitions with 'field' and 'label' keys - update_url_name: URL name for update view - delete_url_name: URL name for delete view - detail_url_name: URL name for detail view {% endcomment %} {% for column in columns %} {% if column.is_link and detail_url_name %} {% with field_value=item|lookup:column.field %}{{ field_value|default:"—" }}{% endwith %} {% else %} {% with field_value=item|lookup:column.field %}{{ field_value|default:"—" }}{% endwith %} {% endif %} {% endfor %}
Edit Delete