diff options
author | Armin Ronacher <armin.ronacher@active-4.com> | 2008-05-16 09:27:51 +0200 |
---|---|---|
committer | Armin Ronacher <armin.ronacher@active-4.com> | 2008-05-16 09:27:51 +0200 |
commit | 67fdddf4f26a0c0420c3002f097a36f038971feb (patch) | |
tree | 3f60c4e61100172bf5ce4556301b9b583b3b3ac3 /docs/extensions.rst | |
parent | 7f15ef846f86647eeb0f2cc14a06e48862423d63 (diff) | |
download | jinja2-67fdddf4f26a0c0420c3002f097a36f038971feb.tar.gz |
removed attribute local aliasing again because that implementation was broken
--HG--
branch : trunk
Diffstat (limited to 'docs/extensions.rst')
-rw-r--r-- | docs/extensions.rst | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/extensions.rst b/docs/extensions.rst index fd71922..9d9bea0 100644 --- a/docs/extensions.rst +++ b/docs/extensions.rst @@ -172,10 +172,14 @@ extensions: .. attribute:: filename The filename of the template the parser processes. This is **not** - the load name of the template which is unavailable at parsing time. + the load name of the template. For the load name see :attr:`name`. For templates that were not loaded form the file system this is `None`. + .. attribute:: name + + The load name of the template. + .. attribute:: stream The current :class:`~jinja2.lexer.TokenStream` |