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

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.4       dwinter     7:       <div tal:replace="structure python:here.XmlToTree(here.collection)"/>
1.5       dwinter     8:       <h3>Which type of View</h3>
                      9:       <span tal:omit-tag="" tal:repeat="link python:here.REQUEST.SESSION['links']"> 
                     10:    <input type="radio" name="link" tal:attributes="value python:link[0]" tal:content="python:link[1]"/>
                     11:    <a tal:attributes="href python:link[0]" target="preview">(preview)</a><br>
                     12:       </span>
1.1       dwinter    13:       <input type="hidden" name="path" tal:attributes="value python:here.REQUEST['path']"/>
1.5       dwinter    14:        
1.1       dwinter    15:       <h3>Additional Information</h3>
1.5       dwinter    16:       <table>
1.6     ! dwinter    17:    <tr><td><i> Label: </i></td><td><input type="text" name="label" size="100"></td></tr>
        !            18:    <tr><td><i> Description:</i></td><td><textarea name="description" cols="80" rows="5"></textarea></td></tr>
1.5       dwinter    19:    <tr><td><i> Content-Type: </i></td><td><input type="text" name="content_type"></td></tr>
                     20:    <tr><td><i> Responsible: </i></td><td><input type="text" name="responsible"></td></tr>
                     21:    <tr><td><i> Weight: </i></td><td><input type="text" name="weight"></td></tr>
                     22:       </table>
1.1       dwinter    23: 
1.5       dwinter    24:       <h3> Credits:</h3><br>
1.4       dwinter    25:       <div tal:omit-tag="" tal:repeat="item python:here.getPartners(here.collection)"> <input type="checkbox" name="credits"  tal:attributes="value python:item[0]" tal:content="python:item[1]"><br></div>
1.5       dwinter    26:             <input type="submit" value="submit"/>
1.1       dwinter    27:       </form>
                     28:    </body>
                     29:   </html>

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