source: main/waeup.kofa/trunk/src/waeup/sirp/browser/templates/contactform.pt @ 7807

Last change on this file since 7807 was 7464, checked in by Henrik Bettermann, 13 years ago

Move form label to site layout pagetemplates. This saves even more code.

File size: 667 bytes
Line 
1<form action="." tal:attributes="action request/URL" method="post"
2      enctype="multipart/form-data">
3
4  <tal:block repeat="widget view/widgets">
5   
6    <div tal:condition="python: widget.name != 'form.body'"
7         tal:content="widget/label">Label
8    </div>
9    <div tal:content="structure widget">
10      Textbody
11    </div>
12    <tal:error tal:condition="widget/error">
13      <span tal:replace="structure widget/error">error</span>
14      <br />
15    </tal:error>
16    <br />
17  </tal:block>
18
19  <div tal:condition="view/availableActions">
20    <input tal:repeat="action view/actions"
21           tal:replace="structure action/render"
22           />
23  </div>
24</form>
Note: See TracBrowser for help on using the repository browser.