Django民意调查教程第3部分:民意调查/模板/民意调查/ index.html - 这段代码是什么?这不是python

时间:2015-12-15 21:15:54

标签: javascript python django

这直接来自民意调查教程,我是编程新手,学习Python和Django,这对我来说并不熟悉。这是JavaScript吗?我是否也需要学习这种学习Django的语言?

轮询/模板/轮询/ index.html中

{% if latest_question_list %}
    <ul>
    {% for question in latest_question_list %}
        <li><a href="/polls/{{ question.id }}/">{{ question.question_text }}</a></li>
    {% endfor %}
    </ul>
{% else %}
    <p>No polls are available.</p>
{% endif %}

3 个答案:

答案 0 :(得分:1)

如上所述,它是Django模板语言(花括号中的东西)而且因为它是一个模板,所以它在HTML中。

答案 1 :(得分:0)

答案 2 :(得分:0)

This is Django templating engine ( just like jinja in Flask). The stuffs under curly braces "{}" takes the values from views.py in app and present to html file.