Unresolved tag 'trans' Leo Trubach 创建于 2011年07月05日 18:20 Hi!When editing my template i get error "unresolved tag 'trans'", but this tag works when i run development server.How do i fix it?Thank you.
Any ideas about this?
Hello Leo,
Do you have {% load i18n %} in the template where you use the 'trans' tag?
--
Dmitry Jemerov
Development Lead
JetBrains, Inc.
http://www.jetbrains.com/
"Develop with Pleasure!"
Yes, i have the following lines in my template
{% extends "base.html" %}
{% load i18n %}
and if i press Ctrl Key and click on i18n c:\python27\Lib\site-packages\django\templatetags\i18n.py file is opened, and i can find there the following lines
...
@register.tag("trans")
def do_translate(parser, token):
...
added issue on YouTrack