Annotation of OSAS/OSA_system/inputDocumentMetadata.zpt~, revision 1.1

1.1     ! dwinter     1: <html>
        !             2: <body>
        !             3: <h2>Metadata Entry</h2>
        !             4: <form method="get" action="writeDocumentMetadata">
        !             5: <h3>Type: <span tal:replace="here/document_type"/></h3>
        !             6: <input type="hidden" tal:attributes="value here/document_type">
        !             7: <table>
        !             8: <tr tal:repeat="metaData python:here.metaDataSet">
        !             9: <div tal:condition="python:metaData[1]=='opt'">
        !            10: <td><i><span tal:replace="python:metaData[0]"/>(optional)</i></td><td>
        !            11: <input tal:attributes="name python:metaData[0]"></td>
        !            12: </div>
        !            13: 
        !            14: <div tal:condition="not:python:metaData[1]=='opt'">
        !            15: <td><b><span tal:replace="python:metaData[0]"/>(required)</b></td>
        !            16: <td><input tal:attributes="name python:metaData[0]"></td>
        !            17: </div>
        !            18: </tr>
        !            19: </table>
        !            20: 
        !            21: <h3>Prelimiminary Metadata</h3>
        !            22: <select name="referenceType">
        !            23: <option tal:repeat="referenceType here/referenceTypes" tal:attributes="value referenceType" tal:content="referenceType"/>
        !            24: </select>
        !            25: 
        !            26: <input type="submit">
        !            27: </form>
        !            28: </body>
        !            29: </html>

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