[Zope3-checkins] CVS: Zope3/src/zope/products/pythonpage -
edit.pt:1.2.4.1
Dave Fregon
axxs at axxs.org
Sat Feb 7 21:30:32 EST 2004
Update of /cvs-repository/Zope3/src/zope/products/pythonpage
In directory cvs.zope.org:/tmp/cvs-serv6496/src/zope/products/pythonpage
Modified Files:
Tag: ozzope-widgets-branch
edit.pt
Log Message:
Removed reference to widget row, and broke up the section into label, widget and error
=== Zope3/src/zope/products/pythonpage/edit.pt 1.2 => 1.2.4.1 ===
--- Zope3/src/zope/products/pythonpage/edit.pt:1.2 Sat Jan 31 09:02:09 2004
+++ Zope3/src/zope/products/pythonpage/edit.pt Sat Feb 7 21:30:31 2004
@@ -52,11 +52,15 @@
<div class="label">Extra top</div>
<div class="field"><input type="text" style="width:100%" /></div>
</div>
- <div class="row"
- metal:define-macro="widget_rows" tal:repeat="widget view/widgets"
- tal:content="structure widget/row">
- <div class="label">Name</div>
- <div class="field"><input type="text" style="width:100%" /></div>
+ <div class="row" metal:define-macro="widget_rows"
+ tal:repeat="widget view/widgets">
+ <div class="label" tal:content="structure widget/label">Name</div>
+ <div class="field" tal:content="structure widget">
+ <input type="text" style="width:100%"/>
+ </div>
+ <div class="error" tal:content="structure widget/error">
+ The Error
+ </div>
</div>
<div class="separator"></div>
<div class="row"
More information about the Zope3-Checkins
mailing list