zoukankan      html  css  js  c++  java
  • django 标签

    django标签

    {% if/for/ifequal/ifnotequal condition %}

      ...{{ name|first|lower}}{# interpretation:lower the first word of name #}

    {% endif/endfor/endifequal/ifnotequal %}

    {% include %} 标签允许在"模板"中包含其它的模板的内容

     将工程里的settings.py的DIRS修改为:

    'DIRS': [os.path.join(BASE_DIR, 'templates')] ,

     以下内容在urls.py

    from django.conf.urls import url from . import view urlpatterns = [url(r'^$', view.django)]

     以下内容在view.html

    from django.http import HttpResponse from django.shortcuts import render

    def django(request):

        context = {}

        # context["question"] = u"aRe You OK?"

        # context["answer"] = u"i am fine,tks!"

        namelist = ["jackey","vickey"]

        context["namelist"] = namelist

        return render(request,'testdjango.html',context)

     以下内容在hello.html的<body></body>标签对里

     {% extends "base.html" %}
        {% block mainbody %}
    {#        <h1>{{ question|lower }}</h1>#}
    {#        <h1>{{ answer|upper|truncatechars:"10" }}</h1>#}
            {% for name in namelist %}
                <ul>
                {% if name == "jackey" %}
                    <li>{{ name }}</li>
                {% elif name == "vickey" %}
                    <li>{{ name }}</li>
                {% else %}
                    <li>{{ name }}</li>
                {% endif %}
                </ul>
            {% endfor %}
        {% endblock %}

  • 相关阅读:
    FATFS 初学之 f_open/ f_close
    前端JQuery(二)
    前端JQuery(一)
    8.22MySQL(五)pymysql模块、sql注入问题
    8.21MySQL(四)基本查询语句及方法、连表、子查询
    8.20MySQL(三)外键
    8.19MySQL(二)
    8.16MySQL(一)
    8.15并发编程(四)
    8.14并发编程(三)
  • 原文地址:https://www.cnblogs.com/vickey-wu/p/6889777.html
Copyright © 2011-2022 走看看