Para este ejemplo el campo tipo Foreign ID es “categoria”.
La forma normal es esta.
{% for row in hubdb_table_rows('hubdb_tabla_id') %}
{% for row_cat in hubdb_table_rows('Tabla_foreign_id') %}
{{ row_cat.hs_id }}-{{ row_cat.categoria }}
{% endfor %}
{% endfor %}
Obtener solo el primer valor.
{% for row in hubdb_table_rows('hubdb_tabla_id') %}
{{row.categoria[0]['hs_id']}}
{{row.categoria[0].hs_id}}
{% endfor %}