Skip to content

Commit

Permalink
Added some bbb and updated the final packages to the new layout. Merged
Browse files Browse the repository at this point in the history
trunk.
  • Loading branch information
strichter committed Jan 17, 2005
1 parent 51cf6d2 commit 6e05d8d
Show file tree
Hide file tree
Showing 2 changed files with 134 additions and 0 deletions.
68 changes: 68 additions & 0 deletions browser/edit.pt
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
<tal:tag condition="view/update"/>
<html metal:use-macro="context/@@standard_macros/view">
<body>
<div metal:fill-slot="body">

<div metal:define-macro="body">

<form action="." tal:attributes="action request/URL" method="post"
enctype="multipart/form-data">

<div metal:define-macro="formbody">

<h3 tal:condition="view/label"
tal:content="view/label"
metal:define-slot="heading"
>Edit something</h3>

<p tal:define="status view/update"
tal:condition="status"
tal:content="status" />

<p tal:condition="view/errors" i18n:translate="">
There are <strong tal:content="python:len(view.errors)"
i18n:name="num_errors">6</strong> input errors.
</p>

<div metal:define-slot="extra_info" tal:replace="nothing">
</div>

<div class="row"
metal:define-slot="extra_top" tal:replace="nothing">
<div class="label">Extra top</div>
<div class="field"><input type="text" style="width:100%" /></div>
</div>

<div metal:use-macro="context/@@form_macros/widget_rows" />

<div class="separator"></div>

<div class="row"
metal:define-slot="extra_bottom" tal:replace="nothing">
<div class="label">Extra bottom</div>
<div class="field"><input type="text" style="width:100%" /></div>
</div>
<div class="separator"></div>
</div>

<div class="row">
<div class="controls">
<input type="submit" value="Refresh"
i18n:attributes="value refresh-button" />
<input type="submit" name="UPDATE_SUBMIT" value="Change"
i18n:attributes="value submit-button"/>
</div>
</div>
<div class="row" metal:define-slot="extra_buttons" tal:replace="nothing">
</div>

<div class="separator"></div>

</form>

</div>

</div>
</body>

</html>
66 changes: 66 additions & 0 deletions browser/editwizard.pt
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
<tal:tag condition="view/update" /><html metal:use-macro="context/@@standard_macros/page">
<body>
<div metal:fill-slot="body">

<div metal:define-macro="body">

<form action="." tal:attributes="action request/URL" method="post"
enctype="multipart/form-data" >

<div metal:define-macro="formbody">

<h3 tal:condition="view/label"
tal:content="view/label"
metal:define-slot="heading"
>Edit something</h3>

<p tal:condition="view/feedback" tal:content="view/feedback" />

<div metal:define-slot="extra_info" tal:replace="nothing">
</div>

<div class="row"
metal:define-slot="extra_top" tal:replace="nothing">
<div class="label">Extra top</div>
<div class="field"><input type="text" style="width:100%" /></div>
</div>

<div metal:use-macro="context/@@form_macros/widget_rows" />

<div class="row"
metal:define-slot="extra_bottom" tal:replace="nothing">
<div class="label">Extra bottom</div>
<div class="field"><input type="text" style="width:100%" /></div>
</div>

</div>

<div class="row">
<div class="controls">
<!-- <input type="submit" value="Refresh"
i18n:attributes="value refresh-button" /> -->
<input tal:condition="view/show_previous"
type="submit" name="PREVIOUS_SUBMIT" value="Previous"
i18n:attributes="value previous-button" />
<input tal:condition="view/show_submit"
type="submit" name="UPDATE_SUBMIT" value="Submit"
i18n:attributes="value submit-button"/>
<input tal:condition="view/show_next"
type="submit" name="NEXT_SUBMIT" value="Next"
i18n:attributes="value next-button" />
</div>
</div>
<div class="separator"></div>

<div tal:replace="structure view/renderHidden">
<!-- type=hidden input controls for passing state without session -->
<input type="hidden" name="example" value="foo" />
</div>
</form>

</div>

</div>
</body>

</html>

0 comments on commit 6e05d8d

Please sign in to comment.