Django 1.9 added the asvar component to blocktrans . Example from the docs :
{% blocktrans asvar the_title %}The title is {{ title }}.{% endblocktrans %} <title>{{ the_title }}</title> <meta name="description" content="{{ the_title }}">
Unfortunately, it seems that before this was added, you needed a different way to do this.
Tim tisdall
source share