{% for list_item in list_items %}
  • {% if list_item.title %}{{ list_item.title }}:{% endif %} {% if show_newlines %} {{ list_item.text|safe|linebreaksbr }} {% else %} {{ list_item.text|safe }} {% endif %} {% if list_item.subtext %} {% if show_newlines %}{{ list_item.subtext|linebreaksbr }}{% else %}{{ list_item.subtext }}{% endif %} {% endif %} {% if list_item.suffix %} {% if show_newlines %}{{ list_item.suffix|linebreaksbr }}{% else %}{{ list_item.suffix }}{% endif %} {% endif %}
  • {% endfor %}