38 | | {{ wtforms_util.render_divs(form) }} |
| 36 | <p class="form_field_label"> |
| 37 | {{ form.bio.label }} |
| 38 | </p> |
| 39 | <div class="form_field_input" style="width:100%"> |
| 40 | {{ form.bio(style="width:100%;") }} |
| 41 | {%- if form.bio.errors -%} |
| 42 | {% for error in form.bio.errors %} |
| 43 | <p class="form_field_error">{{ error }}</p> |
| 44 | {% endfor %} |
| 45 | {%- endif %} |
| 46 | {%- if form.bio.description %} |
| 47 | <p class="form_field_description">{{ form.bio.description|safe }}</p> |
| 48 | {%- endif %} |
| 49 | </div> |
| 50 | <p class="form_field_label"> |
| 51 | {{ form.url.label }} |
| 52 | </p> |
| 53 | <div class="form_field_input" style="width:100%"> |
| 54 | {{ form.url(style="width:100%;") }} |
| 55 | {%- if form.url.errors -%} |
| 56 | {% for error in form.url.errors %} |
| 57 | <p class="form_field_error">{{ error }}</p> |
| 58 | {% endfor %} |
| 59 | {%- endif %} |
| 60 | {%- if form.url.description %} |
| 61 | <p class="form_field_description">{{ form.url.description|safe }}</p> |
| 62 | {%- endif %} |
| 63 | </div> |
| 64 | <p class="form_field_label"> |
| 65 | {{ form.location.label }} |
| 66 | </p> |
| 67 | <div class="form_field_input" style="width:100%"> |
| 68 | {{ form.location(style="width:100%;") }} |
| 69 | {%- if form.location.errors -%} |
| 70 | {% for error in form.location.errors %} |
| 71 | <p class="form_field_error">{{ error }}</p> |
| 72 | {% endfor %} |
| 73 | {%- endif %} |
| 74 | {%- if form.location.description %} |
| 75 | <p class="form_field_description">{{ form.location.description|safe }}</p> |
| 76 | {%- endif %} |
| 77 | </div> |