モデルのhelp_textでpgettext_lazyを使用すると、テンプレートが失敗します。ugettext_lazyで正常に動作します。
エラー
Caught TypeError while rendering: Lazy object returned unexpected type.
モデル
class BalanceIncreaseOrder(models.Model):
amount = models.FloatField(help_text=pgettext_lazy("Translators: please localize this to reflect the correct currency", "Note: amount will be billed in United States dollars (USD)"))
形
class BalanceIncreaseOrderForm(ModelFormRequired):
class Meta:
model = BalanceIncreaseOrder
fields = ("amount",)
レンプレート
{% for field in form %}
{{ field }}
{% endfor %}
ヘルプテキストをそれぞれ設定した直後にモデルをデバッグしました。どちらの場合も印刷されます
<django.utils.functional.__proxy__ object at 0x10fcb3a50>
pgettext_lazyにバグはありますか?何か案は?