python的Django的DTL模板示例讲解( 三 )

python书籍

<以下是通过for book in books遍历方式获取的书籍数据><以下是通过books.0这样的方式获取的书籍数据>

四大名著

    {% for book2 in books2 %}
  • {{ book2 }}
  • {% endfor %}

中国名人

    {% for person,personvalue in persons.items %}
  • {{person}} : {{personvalue}}
  • {% endfor %}

电影

{% for movie in movies %}{% if forloop.first %}{% elif forloop.last%}{%else%}{%endif%}{% endfor %}
序号电影名称票房导演
{{forloop.counter}}{{ movie.name }} {{ movie.box_Office }}{{ movie.Director }}

评论信息

    {% for comment in comments%}
  • {{comment}}
  • {%empty%}
  • 没有任何评论
  • {%endfor%}

水果商品

{% with gd=goods.0%}

{{gd}}

{%endwith%}

学生姓名

{% with students.0 as st1%}

{{st1}}

{%endwith%}
7、在pycharm下方的Terminal终端中输入命令:
python manage.py runserver
如下图所示:
 
python的Django的DTL模板示例讲解

文章插图
 
8、代码运行结果如下面的HTML页面所示:
 
python的Django的DTL模板示例讲解

文章插图
 

【python的Django的DTL模板示例讲解】


推荐阅读