输入小部件之前的Django模式help_text

时间:2018-12-13 13:08:50

标签: django django-forms django-crispy-forms

我正在寻找如何创建类似的东西

enter image description here

使用Django。

models.py上,我有类似的东西

class Fund(models.Model):
    success_targeted = models.TextField(
        help_text="Please specify what the successful outputs (what maybe be produced) and outcomes (what change it could lead to) would be for your participation in this event. These can include learning goals being met, collaborations, reports etc."
)

forms.py上,我有类似的东西

class FundForm(ModelForm):
    class Meta:
        model = Fund

正在使用django-crispy-forms

渲染表单
{% crispy formset formset.helper %}

当前渲染为

enter image description here

在小部件后加help_text。如何将help_text移至小部件之前?

0 个答案:

没有答案