Annotation of OSAS/OSA_system/zpt/contextDataMain.zpt, revision 1.8

1.1       dwinter     1: <html metal:use-macro="here/main_template/macros/page">
                      2:   <body metal:fill-slot="body">
                      3:     <h2>Add a document to a collection</h2>
1.5       dwinter     4:     <p>(<b>Bold face is required</b>,<i>Italics is optional</i>)</p>
1.1       dwinter     5:     <form action="addContextData2">
1.5       dwinter     6:       <h3>Select the collection or subcollection (required)</h3>
1.7       dwinter     7:       
                      8:       <div tal:replace="structure python:here.XmlToTree(here.collection,getattr(here,'pwstr',''))"/>
1.5       dwinter     9:       <h3>Which type of View</h3>
                     10:       <span tal:omit-tag="" tal:repeat="link python:here.REQUEST.SESSION['links']"> 
1.8     ! dwinter    11:    <input type="radio" name="link" tal:attributes="value python:link[0]"><span tal:content="python:link[1]"/>
1.5       dwinter    12:    <a tal:attributes="href python:link[0]" target="preview">(preview)</a><br>
                     13:       </span>
1.1       dwinter    14:       <input type="hidden" name="path" tal:attributes="value python:here.REQUEST['path']"/>
1.5       dwinter    15:        
1.1       dwinter    16:       <h3>Additional Information</h3>
1.5       dwinter    17:       <table>
1.6       dwinter    18:    <tr><td><i> Label: </i></td><td><input type="text" name="label" size="100"></td></tr>
                     19:    <tr><td><i> Description:</i></td><td><textarea name="description" cols="80" rows="5"></textarea></td></tr>
1.5       dwinter    20:    <tr><td><i> Content-Type: </i></td><td><input type="text" name="content_type"></td></tr>
                     21:    <tr><td><i> Responsible: </i></td><td><input type="text" name="responsible"></td></tr>
                     22:    <tr><td><i> Weight: </i></td><td><input type="text" name="weight"></td></tr>
                     23:       </table>
1.1       dwinter    24: 
1.5       dwinter    25:       <h3> Credits:</h3><br>
1.8     ! dwinter    26:       <div tal:omit-tag="" tal:repeat="item python:here.getPartners(here.collection)"> <input type="checkbox" name="credits"  tal:attributes="value python:item[0]"><span tal:content="python:item[1]"/><br></div>
1.5       dwinter    27:             <input type="submit" value="submit"/>
1.1       dwinter    28:       </form>
                     29:    </body>
                     30:   </html>

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>