码迷,mamicode.com
首页 > 其他好文 > 详细

Django DTL模板语法中的判断

时间:2019-01-19 14:27:35      阅读:261      评论:0      收藏:0      [点我收藏+]

标签:html   django   网吧   else   height   end   round   text   enter   

  

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        body ,body>p{
            background: pink;
            text-align: center;
            line-height: 100px;
        }
    </style>

</head>
<body>
{#    {% if age < 18 %}#}
{#        <p>您是未成年人,不能进入网吧</p>#}
{#    {% elif age == 18 %}#}
{#        <p>您是满了18岁,可以进入网吧</p>#}
{#    {% else  %}#}
{#        <p>您已经是成年人了,要承担起家庭的责任了,也不能进入网吧</p>#}
{#    {% endif %}#}
    {% if ‘蒙多‘ in heros %}
        <p>砍</p>
    {% else  %}
        <p>蒙多想去哪就去哪</p>
    {% endif %}
</body>
</html>

  

Django DTL模板语法中的判断

标签:html   django   网吧   else   height   end   round   text   enter   

原文地址:https://www.cnblogs.com/randomlee/p/10291485.html

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