Issue 21: Invalid block tag: 'blocktrans' with notify.txt
Status:  Fixed
Owner: ----
Closed:  May 2008
Reported by s.ko...@dms-arts.com, May 28, 2008
When using the template i get the error:

Invalid block tag: 'blocktrans' with notify.txt

two fixes:

1: missing "{% load i18n %}" at the top of notify.txt

2: missing "with"

old:

{% blocktrans site.name as site_name and site.domain as domain and
thread.get_absolute_url as url %}You received this message because you
subscribed to a forum thread at {{ site_name }}.  Login at this URL to
update your subscriptions: http://{{ domain }}{{ url }}{% endblocktrans %}

new:

{% blocktrans with site.name as site_name and site.domain as domain and
thread.get_absolute_url as url %}You received this message because you
subscribed to a forum thread at {{ site_name }}.  Login at this URL to
update your subscriptions: http://{{ domain }}{{ url }}{% endblocktrans %}

May 28, 2008
Project Member #1 rwpoul...@gmail.com
Fixed. Will be in SVN shortly. Thank yoi!
Status: Fixed