File:  [Repository] / OSAS / OSA_system / zpt / inputDocumentMetadata.zpt
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Wed Mar 3 13:02:55 2004 UTC (20 years, 4 months ago) by dwinter
Branches: MAIN
CVS tags: HEAD
moved templates to zpt

<html metal:use-macro="here/main_template/macros/page">
<body metal:fill-slot="body">
<h2>Metadata Entry</h2>
<form method="get" action="writeDocumentMetadata">
<h3>Type: <span tal:replace="here/document_type"/></h3>
<input type="hidden" tal:attributes="value here/document_type">
<table>
<tr tal:repeat="metaData python:here.metaDataSet">
<div tal:condition="python:metaData[1]=='opt'">
<td><i><span tal:replace="python:metaData[0]"/>(optional)</i></td><td>
<input tal:attributes="name python:metaData[0]"></td>
</div>

<div tal:condition="not:python:metaData[1]=='opt'">
<td><b><span tal:replace="python:metaData[0]"/>(required)</b></td>
<td><input tal:attributes="name python:metaData[0]"></td>
</div>
</tr>
</table>

<h3>Image</h3>
<table>
<tr tal:repeat="metaData python:here.imgData['image']">
<div tal:condition="python:metaData[1]=='opt'">
<td><i><span tal:replace="python:metaData[0]"/>(optional)</i></td><td>
<input tal:attributes="name python:metaData[0]"></td>
</div>

<div tal:condition="not:python:metaData[1]=='opt'">
<td><b><span tal:replace="python:metaData[0]"/>(required)</b></td>
<td><input tal:attributes="name python:metaData[0]"></td>
</div>
</tr>
</table>


<h3>Prelimiminary Metadata</h3>
<select name="referenceType">
<option tal:repeat="referenceType here/referenceTypes" tal:attributes="value referenceType" tal:content="referenceType"/>
</select>

<input type="submit">
</form>
</body>
</html>

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