Annotation of OSAS/OSA_system/inputAcquisitionData.zpt, revision 1.2

1.2     ! dwinter     1: <html metal:use-macro="here/main_template/macros/page">
        !             2: <body metal:fill-slot="body">
        !             3: <h2>Enter Aquisition data of <span tal:replace="here/REQUEST/SESSION/path"/></h2>
        !             4: <form method="post" action="writeAcquisitionMetadata">
1.1       dwinter     5: <h3>Provider (required)</h3>
                      6: <select name="producer">
                      7: <option tal:repeat="producer here/getProducers" tal:attributes="value producer" tal:content="producer"/>
                      8: </select>
                      9: <h3>Date of Acquisition (required)</h3>
1.2     ! dwinter    10: <p>Date (yyyy-mm-dd):<input type="text" name="date" tal:attributes="value here/getDate"></p>
1.1       dwinter    11: 
                     12: <h3>Description (optional)</h3>
                     13: <textarea cols=60 rows=10 name="description"></textarea>
                     14: 
                     15: <input type="hidden" tal:attributes="value here/REQUEST/SESSION/path" name="path">
1.2     ! dwinter    16: <h3>Media Type</h3>
        !            17: <select name="media_type">
        !            18: <option tal:repeat="mediaType here/mediaTypes" tal:attributes="value mediaType" tal:content="mediaType"/>
        !            19: </select>
        !            20: 
        !            21: 
1.1       dwinter    22: <input type="submit">
                     23: </form>
                     24: </body>
                     25: </html>
                     26: 
                     27: 

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