From 24d56e21c3ce8ec9392e8fecc462426e9ed92bbe Mon Sep 17 00:00:00 2001 From: Christopher Cave-Ayland Date: Thu, 1 Jun 2023 11:19:11 +0100 Subject: Fixed #34616 -- Corrected label examples in 5.0 release notes. --- docs/releases/5.0.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs') diff --git a/docs/releases/5.0.txt b/docs/releases/5.0.txt index 6c16945f1f..f6377cd59b 100644 --- a/docs/releases/5.0.txt +++ b/docs/releases/5.0.txt @@ -59,7 +59,7 @@ For example, the template below:
...
- {{ form.name.label }} + {{ form.name.label_tag }} {% if form.name.help_text %}
{{ form.name.help_text|safe }}
{% endif %} @@ -67,7 +67,7 @@ For example, the template below: {{ form.name }}
- {{ form.email.label }} + {{ form.email.label_tag }} {% if form.email.help_text %}
{{ form.email.help_text|safe }}
{% endif %} @@ -75,7 +75,7 @@ For example, the template below: {{ form.email }}
- {{ form.password.label }} + {{ form.password.label_tag }} {% if form.password.help_text %}
{{ form.password.help_text|safe }}
{% endif %} -- cgit v1.3