I know this list must be somewhere in the docs, but I cannot find it anywhere.
I am using the Image column type in Hubdb. I know how to return the image source URL {{ row.image.url }} and width and height. How do I grab the alt text, loading option (lazy, etc)?
I assume there is a list somewhere, but I cannot find it.
I think there’s unfortunately no “so detailed” information about each HubDB column format available.
Something I always do (and recommend) is to use the pprint filter. To display all available options.
Example:
{% set rows = hubdb_table_rows(HUBDB-ID) %}
{% for row in rows %}
{{ row.image|pprint }}
{% endfor %}