File:  [Repository] / ECHO_content / zpt / AddECHO_collectionForm.zpt
Revision 1.13: download - view: text, annotated - select for diffs - revision graph
Tue Jan 23 16:50:11 2007 UTC (17 years, 5 months ago) by dwinter
Branches: MAIN
CVS tags: cleanup, Root_cleanup, HEAD
HinzufŸgen von "isVisible" durch Julia

    1: <h1 tal:replace="structure here/manage_page_header">Header</h1>
    2: 
    3:     <h2>Add a new collection</h2>
    4:     <form name="form" action="manage_addECHO_collection">
    5:     <h3>Standard information</h3>
    6:     <table>
    7:       <tr><td class="form-label"> ID: </td><td><input type="text" name="id" size=20></td></tr>
    8:       <tr><td class="form-optional">Title: </td><td><input type="text" name="title" size=40></td></tr>
    9:       <tr><td class="form-optional"> Label: </td><td><input type="text" name="label" size=40></td></tr>
   10:      
   11:       <tr><td class="form-optional"><i> Weigth for sorting:</i> </td><td><input type="text" name="weight" size=20></td></tr>
   12:       <tr><td class="form-label">Sortfield for subcollections of this collection: </td><td><input type="text" name="sortfield" value="weight" size=20></td></tr>
   13:       <tr><td valign="top" class="form-optional"> Description:</td><td><textarea name="description" cols=40 rows=10></textarea></td></tr> 
   14: 	</table>
   15: 	 <input type="submit" value="Add">
   16: 	<hr>
   17: 	  <h4>Partners (optional)</h4>
   18:       <span tal:omit-tag="" tal:repeat="item here/getPartners">
   19: 	<input type="checkbox" name="credits"  tal:attributes="value item/id"><tal:block tal:replace="python:here.decode(item.title)"/><br>
   20:       </span>
   21:     <hr>
   22: 	<h3>Extensions for expert users not needed for standard usage</h3>
   23: 	<table>
   24: 	 <tr><td class="form-optional"> Imagetag</td><td><input type="text" name="imageTag" size=80></td></tr>
   25:      
   26:       <tr><td class="form-optional"> Content-Type:</td><td><select name="contentType" tal:content="structure here/contentTypeSelector_HTML"/></td></tr>
   27:       <tr><td class="form-optional"> Responsible Persons (Lastname, FirstName; Lastname, Firstname...): </td><td><input type="text" name="responsible" size=40></td></tr>
   28:       <tr><td class="form-optional"> Secondary Link: </td><td><input type="text" name="secondaryLink"  size=100></td></tr>
   29:       <tr><td class="form-optional"> Title of Secondary Link: </td><td><input type="text" name="secondaryLinkTitle"  size=100></td></tr>
   30:       <tr><td class="form-optional"> Background colour:  </td><td><input type="text" name="bgcolour"  value="#dddddd" size=100></td></tr>
   31:       <tr><td class="form-optional"> Collection can be browsed and is searchable:  </td><td> 
   32: 	  <select name="isVisible:boolean">
   33: 	  <option value="True" selected>True</option>
   34: 	  <option value="False">False</option>
   35: 	  </select>
   36:       </td></tr>
   37:       </table>
   38:       <input type="submit" value="Add">
   39:      
   40:       
   41:       <h4>Coordinates (optional)</h4>
   42:     <table>
   43:       <tr><td> Coord1: </td><td><input type="text" name="coords"></td></tr>
   44:       <tr><td> Coord2: </td><td><input type="text" name="coords"></td></tr>
   45:       <tr><td> Coord3: </td><td><input type="text" name="coords"></td></tr>
   46:       <tr><td> Coord4: </td><td><input type="text" name="coords"></td></tr>
   47:       </table>
   48: 
   49:     
   50:       <input type="submit" value="Add">
   51:     </form>
   52: <h1 tal:replace="structure here/manage_page_footer">Footer</h1>

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