File:  [Repository] / ECHO_content / zpt / ChangeECHO_refObj.zpt
Revision 1.3: download - view: text, annotated - select for diffs - revision graph
Tue Dec 13 12:45:22 2005 UTC (18 years, 6 months ago) by dwinter
Branches: MAIN
CVS tags: cleanup, Root_cleanup, HEAD
change utf-8 handlingCVS: ----------------------------------------------------------------------

    1: <h1 tal:replace="structure here/manage_page_header">Header</h1>
    2:     <h2>ChangeECHO_refObj</h2>
    3:     <form name="form" action="changeECHO_refObj">
    4:       <table>
    5:       <tr><td><b> ID: </b></td><td><input type="text" name="id" tal:attributes="value here/id"></td></tr>
    6:       <tr><td><b> RefID: </b></td><td><input type="text" name="refId" tal:attributes="value here/refId"></td></tr>
    7:       <tr><td><b> Title: </b></td><td><input type="text" name="title" tal:attributes="value here/title"></td></tr>
    8:       <tr><td><b> Label: </b></td><td><input type="text" name="label" tal:attributes="value here/label"></td></tr>
    9:       <tr><td><b> Description:</b></td><td><textarea name="description" cols=80 rows=40 tal:content="here/description"></textarea></td></tr>
   10:       <tr><td><b> Content-Type: </b></td><td><input type="text" name="contentType" tal:attributes="value here/contentType"></td></tr>
   11:       <tr><td><b> Responsible: </b></td><td><input type="text" name="responsible" tal:attributes="value here/responsible"></td></tr>
   12: </table>
   13:       <h3>Scientific Information</h3>
   14: <table>
   15: 
   16:       <tr><td><b> Source-Type: </b></td><td><input type="text" name="source_type" tal:attributes="value python:here.scientific_Information.source_type"></td></tr>
   17:       <tr><td><b> Period: </b></td><td><input type="text" name="period" tal:attributes="value here/scientific_Information/get_period"></td></tr>
   18:       </table>
   19: 
   20:       <h4>Classification</h4>
   21:       <table>
   22:       <tr><td><b> Context: </b></td><td><input type="text" name="context" tal:attributes="value python:here.scientific_Information.scientific_Classification.get_context()"></td></tr>
   23:       <tr><td><b> Science: </b></td><td><input type="text" name="science" tal:attributes="value python:here.scientific_Information.scientific_Classification.get_science()"></td></tr>
   24:       <tr><td><b> Practice: </b></td><td><input type="text" name="practice" tal:attributes="value python:here.scientific_Information.scientific_Classification.get_practice()"></td></tr>
   25:  </table>
   26:            
   27: <h3> Credits:</h3>
   28:       
   29:       <div tal:repeat="item here/partners/getPartners">
   30: 	
   31: 	<div tal:condition="python:item.getId() in here.credits">
   32: 	  
   33: 	  <input type="checkbox" name="credits" tal:attributes="value item/id" tal:content="item/title" checked/>
   34: 	</div>
   35: 	<div tal:condition="not:python:item.getId() in here.credits">
   36: 		<input type="checkbox" name="credits" tal:attributes="value item/id" tal:content="item/title"/>
   37: 	</div>
   38: 
   39:       </div>
   40:       <input type="submit" value="Add"><br><br>
   41:        </form>
   42: <h1 tal:replace="structure here/manage_page_footer">Footer</h1>

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