我正在寻找如何创建类似的东西
使用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
渲染表单
{% crispy formset formset.helper %}
当前渲染为
在小部件后加help_text
。如何将help_text
移至小部件之前?