Opened 7 years ago

Closed 7 years ago

Last modified 7 years ago

#27730 closed Cleanup/optimization (fixed)

Document that template tags with "as" variable assignment don't propogate variables across blocks

Reported by: Peter Bittner Owned by: kapil garg
Component: Documentation Version: 1.10
Severity: Normal Keywords:
Cc: Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Peter Bittner)

The trans ... as tag as documented in topics / i18n / translation only works in an isolated fashion outside blocks or inside of blocks. In other words, it does not work across blocks when defined outside of them, i.e. "globally" in a template.

The following example doesn't work: -- the value of {{ title }} will be empty.

{% extends 'base.html' %}{% load i18n %}
{% trans "My Projects" as title %}

{% block head_title %}{{ title }}{% endblock %}
{% block content %}
    <h2>{{ title }}</h2>
{% endblock %}

This behavior is not documented, and neither is this behavior intuitive.

The same behavior and/or lack of documentation is true for blocktrans asvar ....

Enhancement or Documentation Fix?

This issue should be clarified and either fixed in the documentation (if the observations are confirmed), or alternatively changed in the template tag's behavior (if feasible and sensible).

Which route should be taken? Please clarify.

See Also

Change History (9)

comment:1 by Peter Bittner, 7 years ago

Description: modified (diff)

comment:2 by Tim Graham, 7 years ago

Component: InternationalizationDocumentation
Summary: i18n: trans tag with "as" does not work across blocksDocument that template tags with "as" variable assignment don't propogate variables across blocks
Triage Stage: UnreviewedAccepted

Do any template tags that use the "as" syntax work that way? I doubt it but I haven't checked. Probably the behavior should be documented in template inheritance -- this likely isn't specific to {% trans %} and {% blocktrans %}.

comment:3 by Peter Bittner, 7 years ago

I think it makes sense to document the behavior in the section of the tag itself, because when you do programming you jump in directly to the specific section. You don't read up on concepts first.

If this is some generic behavior it should be documented in a central place (maybe "template inheritance" makes sense?), but links from the specific sections should point there. Especially if the behavior is not obvious---and I have a bit of a feeling it isn't.

in reply to:  2 comment:4 by kapil garg, 7 years ago

Replying to Tim Graham:

Do any template tags that use the "as" syntax work that way? I doubt it but I haven't checked. Probably the behavior should be documented in template inheritance -- this likely isn't specific to {% trans %} and {% blocktrans %}.

Basically "block" tags cannot use variables which are generated outside them (which are not passed in initial context) in the child template. Do the changes need to be made on dev documentation only ?

comment:5 by Tim Graham, 7 years ago

All pull requests go to the master branch and are backported by the committer, if needed. See the Supported Versions policy.

comment:6 by kapil garg, 7 years ago

Owner: changed from nobody to kapil garg
Status: newassigned

comment:7 by kapil garg, 7 years ago

Has patch: set

comment:8 by Tim Graham <timograham@…>, 7 years ago

Resolution: fixed
Status: assignedclosed

In 278a09a:

Fixed #27730 -- Doc'd that template vars created outside a block can't be used in it.

comment:9 by Tim Graham <timograham@…>, 7 years ago

In 8a1340ea:

[1.11.x] Fixed #27730 -- Doc'd that template vars created outside a block can't be used in it.

Backport of 278a09ac1f410cf4e3472146324feded2e2c18b3 from master

Note: See TracTickets for help on using tickets.
Back to Top