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

1.4       dwinter     1: <html metal:use-macro="here/main_template/macros/page">
                      2:   <body metal:fill-slot="body">
1.1       dwinter     3:     <h2>Add a document to a collection</h2>
1.4       dwinter     4:     
1.1       dwinter     5:     <form action="addContextData2">
1.4       dwinter     6:       <table border="1">
                      7:       <tr>
                      8:        <td valign="top">
                      9:       <h3>Select the collection or subcollection</h3>
1.3       dwinter    10:       <div tal:replace="structure python:here.generateTree(depth=10)"/>
1.4       dwinter    11:        </td>
                     12:     
                     13:         <td valign="top">
1.2       dwinter    14:       <h3>Link</h3>
                     15:       <input tal:repeat="link python:here.REQUEST.SESSION['links']" type="radio" name="link" tal:attributes="value python:link[0]" tal:content="python:link[1]"/>
1.1       dwinter    16:       <input type="hidden" name="path" tal:attributes="value python:here.REQUEST['path']"/>
                     17: 
                     18:       <h3>Additional Information</h3>
                     19: 
                     20:       <b> Label: </b><input type="text" name="label"><br>
                     21:       
                     22:       <b> Description:</b><textarea name="description"></textarea><br>
                     23:       <b> Content-Type: </b><input type="text" name="content_type"><br><br>
                     24:       <b> Responsible: </b><input type="text" name="responsible"><br><br>
1.5       dwinter    25:       <b> Weight: </b><input type="text" name="weight"><br><br>
                     26: 
1.1       dwinter    27:       <h3>Scientific Information</h3>
                     28:       <b> Source-Type: </b><input type="text" name="source_type"><br>
                     29:       <b> Period: </b><input type="text" name="period"><br>
                     30:       <h4>Classification</h4>
                     31:       <b> Context: </b><input type="text" name="context"><br>
                     32:       <b> Science: </b><input type="text" name="science"><br>
                     33:       <b> Practice: </b><input type="text" name="practice"><br>
                     34: 
                     35:       <b> Credits:</b><br>
1.6     ! dwinter    36: 
1.5       dwinter    37:       <div tal:omit-tag="" tal:repeat="item python:here.getPartners()"> <input type="checkbox" name="credits"  tal:attributes="value item/id" tal:content="item/title"><br></div>
1.6     ! dwinter    38:     
1.4       dwinter    39: </td>
                     40: </tr>
                     41: </table>
                     42: <input type="submit" value="submit"/>
1.1       dwinter    43:       </form>
                     44:    </body>
                     45:   </html>

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