I want my django template variables were possible to translate. I used for this purpose {% blocktrans %}.
Is this code is correct and can be optimized. I mean to write better? The loop or something like that.
{% for obj in objects %}
{% blocktrans with obj.user as user and obj.country as country and obj.b_day as b_day %}
<tr>
<td>{{ user }}</td>
<td>{{ country }}</td>
<td>{{ b_day }}</td>
</tr>
{% endblocktrans %}
{% endfor %}