Skip to content

Instantly share code, notes, and snippets.

@mcdonc
Created December 4, 2012 11:05
Show Gist options
  • Save mcdonc/4202723 to your computer and use it in GitHub Desktop.
Save mcdonc/4202723 to your computer and use it in GitHub Desktop.
<form method="POST" action="whatever">
<tal:block
define="form view.addrform">
<div class="row"
tal:repeat="field form">
<div class="span2">
${structure:field.title}
<span class="req" tal:condition="field.required">*</span>
</div>
<div class="span2">
${structure:field.serialize()}
</div>
<ul tal:condition="field.error">
<li tal:repeat="error field.error.messages()">
${structure:error}
</li>
</ul>
</div>
</tal:block>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment