Django режим help_text перед вводом виджета - PullRequest
0 голосов
/ 13 декабря 2018

Я смотрю, как создать что-то вроде

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 перед виджетом?

...