[%- for column in columns %] {% if "[[ column.name ]]" not in skip_list %} [%- if column.type in ['video'] %] [%- elif column.type in ['relationship'] %] [%- if column.multiple %]
  • [[ column.name|pluralize ]]: {{ instance.[[ column.name|pluralize ]] }}
  • [%- else %]
  • [[ column.name ]]: {{ instance.[[ column.name ]] }}
  • [%- endif %] [%- elif column.type in ['bool', 'boolean', ] %]
  • [[ column.name ]]: {{ instance.[[ column.name ]]|bool }}
  • [%- else %]
  • [[ column.name ]]: {{ instance.[[ column.name ]] }}
  • [%- endif %] {% endif %} [%- endfor %]