diff --git a/gadjo/templates/gadjo/widget.html b/gadjo/templates/gadjo/widget.html index 741254a..79f0620 100644 --- a/gadjo/templates/gadjo/widget.html +++ b/gadjo/templates/gadjo/widget.html @@ -19,6 +19,14 @@
+ {% block widget-hint %} + {% if field.help_text %} +
{{ field.help_text|safe }}
+ {% endif %} + {% endblock %} + {% block widget-control %} + {{ field }} + {% endblock %} {% block widget-error %} {% if field.errors %}

@@ -28,14 +36,6 @@

{% endif %} {% endblock %} - {% block widget-control %} - {{ field }} - {% endblock %} - {% block widget-hint %} - {% if field.help_text %} -
{{ field.help_text|safe }}
- {% endif %} - {% endblock %}
{% endblock %}