Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Using Django 1.2.1, any use of blocktrans breaks my template. Eg

{%blocktrans%}text{%endblocktrans%}

Results in:

Django Version: 1.2.1 Exception Type: TemplateSyntaxError Invalid block tag: 'blocktrans'

Removing the blacktrans causes the code to work. Django s running on GAE if that's relevant.

share|improve this question

2 Answers

up vote 7 down vote accepted

Answering my own question, I'd forgotten:

{% load i18n %}

In the top of the template. This is required to use the blocktrans tag.

share|improve this answer
I've done this myself so many times! – bogeymin Feb 7 '11 at 13:18

Just add that to your built-in tags like this, instead:

# in urls.py
template.add_to_builtins('django.templatetags.i18n')

Any tag I'm using in multiple templates, I just load into there.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.