Django模板语言(一)
1.{{变量名}}
2.<ul>
{% for i in author_list%}
<li>{{ i }} </li>
{endfor}
</ul>
3.<ul>
{%if 10>5%}
。。。。
{% else %}
{% endif %}
示例:
<select class="form-control" multiple name="books">
{% for book in book_list %}
{% if book in egit_author.book %}
<option selected value="{{ book.id }}">{{ book.name }}</option>
{% else %}
<option value="{{ book.id }}">{{ book.name }}</option>
{% endif %}
{% endfor %}
</select>

浙公网安备 33010602011771号