Add missing help_text to callforpapers form
authorMagnus Hagander <magnus@hagander.net>
Sun, 18 Nov 2018 17:40:26 +0000 (18:40 +0100)
committerMagnus Hagander <magnus@hagander.net>
Sun, 18 Nov 2018 17:40:26 +0000 (18:40 +0100)
template.jinja/confreg/callforpapersform.html

index 5496fddc13645102bc54ad0a379d7b15e70b862d..0ff7356f85c6e850ad2658d42541098990616a38 100644 (file)
@@ -68,7 +68,7 @@ Please complete the following fields. You may use markdown in the abstract.
 {%for f in form%}
  <tr{%if f.errors%} class="err"{%endif%} id="tr_{{f.name}}">
   <th>{{f.label_tag()}}</th>
-  <td>{{f}}{%if f.errors%}{{f.errors}}{%endif%}</td>
+  <td>{{f}}{%if f.errors%}{{f.errors}}{%endif%}{%if f.help_text%}<br/>{{f.help_text}}{%endif%}</td>
  </tr>
 {%endfor%}
 </table>