From cdb8ad4c30fac7cf55fbb647a9a27ac03fd86eb6 Mon Sep 17 00:00:00 2001 From: Oliver Date: Thu, 9 Apr 2026 13:31:25 +1000 Subject: [PATCH] Update report example (#11704) * Update report example * Fix typo --- docs/docs/report/helpers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/report/helpers.md b/docs/docs/report/helpers.md index 6688a14a4a..aa56d74230 100644 --- a/docs/docs/report/helpers.md +++ b/docs/docs/report/helpers.md @@ -599,7 +599,7 @@ To access just the value of a parameter, use the `parameter_value` template tag: {% raw %} {% load report %} -{% parameter_value part "length" as length_value %} +{% parameter_value part "length" backup_value="3"as length_value %} Part: {{ part.name }}
Length: {{ length_value }} {% endraw %}