dictionary.name: {{ dictionary.name }}
dictionary.nested.name: {{ dictionary.nested.name }}

dictionary.name: {{ dictionary.name }}
dictionary.nested.name: {{ dictionary.nested.name }}
{{ dictionary_2 }}
{{ date_example }}
{{ date_example_with_typehint }}
Dates list with no type hint (will change to strings with an action)
    {% for date in dates_with_no_typehint %}
  • {{ date }}
  • {% endfor %}
Dates list with just list type hint (will change to strings with an action)
    {% for date in dates_with_list_typehint %}
  • {{ date }}
  • {% endfor %}
Dates list with old type hint (should stay datetimes with an action)
    {% for date in dates_with_old_typehint %}
  • {{ date }}
  • {% endfor %}
Dates list with new type hint (should stay datetimes with an action)
    {% for date in dates_with_new_typehint %}
  • {{ date }}
  • {% endfor %}

pydantic_field.title: {{ pydantic_field.title }}
pydantic_field.publish_date: {{ pydantic_field.publish_date }}

unicorn_field.title: {{ unicorn_field.title }}
unicorn_field.publish_date_field.year: {{ unicorn_field.publish_date_field.year }}


unicorn_field.title: {{ unicorn_field.title }}
unicorn_field.publish_date_field.year: {{ unicorn_field.publish_date_field.year }}


book.title: {{ book.title }} 📖

Book queryset




float_example: {{ float_example }}


color: {{ color }}