Я настраиваю шаблон почтовой формы и хотел бы, чтобы поля в моем шаблоне электронной почты были сгруппированы по их наборам полей, а также включали заголовок набора полей.Это возможно сделать?Заранее спасибо.Я новый пользователь Plone.Мой текущий шаблон:
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title></title></head>
<body>
<p tal:content="here/getBody_pre | nothing" />
<table border="0" cellpadding="5" cellspacing="0" width="600" style="-webkit-text-size-adjust: none;">
<tal:block repeat="field options/wrappedFields | nothing">
<tr style="border-bottom-width: 1px; border-bottom-style:solid; border-bottom-color: black;">
<td>
<tal:first tal:content="field/fgField/widget/label" />: <tal:second tal:content="structure python:field.htmlValue(request)" />
</td>
</tr>
</tal:block>
</table>
<p tal:content="here/getBody_post | nothing" />
<pre tal:content="here/getBody_footer | nothing" />
</body>
</html>