django チュートリアル パート 4 には、次のコードがあります。
{{ poll.question }}
{% if error_message %}<p><strong>{{ error_message }}</strong></p>{% endif %}
<form action="{% url 'polls:vote' poll.id %}" method="post">
{% csrf_token %}
{% for choice in poll.choice_set.all %}
<input type="radio" name="choice" id="choice{{ forloop.counter }}" value="{{ choice.id }}" />
<label for="choice{{ forloop.counter }}">{{ choice.choice_text }}</label><br />
{% endfor %}
<input type="submit" value="Vote" />
</form>
if 条件ステートメントの error_message 変数が定義されている場所を見つけるのに苦労しています。Google、スタック オーバーフロー、django API で検索しても、これに関する回答は得られないようです。