From bf9975b0eb5f839ac5ff53b4fb302548dde6a418 Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Sat, 15 Jun 2013 12:02:25 +0200 Subject: [PATCH] Fixed #20606 -- Fixed 'for' example in template tag docs Thanks batisteo for the report. --- docs/ref/templates/builtins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt index 24eda2ce2c..d92ac602fc 100644 --- a/docs/ref/templates/builtins.txt +++ b/docs/ref/templates/builtins.txt @@ -371,7 +371,7 @@ displayed if the given array is empty or could not be found:: {% for athlete in athlete_list %}
  • {{ athlete.name }}
  • {% empty %} -
  • Sorry, no athlete in this list!
  • +
  • Sorry, no athletes in this list.
  • {% endfor %}