{% if my_message.name == 'bobby' %}bobby_test{% endif %}
if ... else ...
{% if not my_message.name == 'bobby' %}has_bobby{% else %}no_has_bobby{% endif %}
{% ifequal my_message.name 'sophie' %}has_bobby{% else %}no_has_bobby{% endifequal %}
{% for hot_org in hot_orgs %}
{{ forloop.counter }} // 获取循环的index
{{ hot_org.name }}
{% endfor %}
{% ifequal my_message.name|slice:'5' 'sophie' %}has_bobby{% else %}no_has_bobby{% endifequal %}
{{ request.user.mobile|default_if_none: '' }}
<input id="name" type="text" name="name" class="error"
value="{% ifequal my_message.name|slice:'5' 'sophie' %}has_bobby{% else %}no_has_bobby{% endifequal %}"
placeholder="请输入您的姓名"/>
urlpatterns = [
path('form/', form_view, name='go_form'),
...
]
<form action="{% url 'go_form' %}" method="post" class="smart-green">
...
</form>