码迷,mamicode.com
首页 > 编程语言 > 详细

五、Python Django模板标签

时间:2016-09-08 18:43:36      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:​python django模板标签

Python Django模板标签

一、if、for标签


# cat blog/views.py

from django.shortcuts import render_to_response


def index(req):

    user = {‘name‘:‘loyu‘,‘age‘:23,‘sex‘:‘male‘}

    book_list = [‘python‘,‘java‘,‘php‘,‘web‘]

    return render_to_response(‘index.html‘,{‘title‘:‘Loyu page‘,‘user‘:user,‘book_list‘:book_list})



# cat blog/template/index.html


<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

<head>

    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />

    <title>{{title}}</title>

</head>

<body>

{% if user %}

   <li>name:{{user.name}}</li>

{% else %}

用户不存在

{% endif %}


{% for book in book_list %}

   <li>{{book}}</li>

{% endfor %}


{% for k,v in user.items %}

   <li>{{forloop.counter}}.{{k}}:{{v}}</li>

{% endfor %}

</body>

</html>


本文出自 “流星宇” 博客,请务必保留此出处http://8789878.blog.51cto.com/8779878/1850743

五、Python Django模板标签

标签:​python django模板标签

原文地址:http://8789878.blog.51cto.com/8779878/1850743

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!