我希望我的 django 模板变量可以翻译。我为此使用了 {% blocktrans %}。
这段代码是否正确并且可以优化。我的意思是写得更好?循环或类似的东西。
{% 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 %}