html模版语法

1、for循环

  表示渲染{% for %}与{% endfor %}之间的所有内容,与python中的for循环类似。

  {% for student in students %}

    <li>{{student.name}}</li>

  {% endfor %}