File:  [Repository] / OSA_system2 / zpt / changeHandlerObjectForm.zpt
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Thu Dec 23 16:02:46 2004 UTC (19 years, 6 months ago) by dwinter
Branches: MAIN
CVS tags: HEAD
handler zpts added

    1: <html>
    2:   <body>
    3:     <form action="changeHandlerObject" method="post">
    4:       <h3>Change Viewer Object</h3>
    5:       <table>
    6: 	<tr>
    7: 	  <td>
    8: 	    <b>Title:</b>
    9: 	  </td>
   10: 	  <td>
   11: 	    <input name="title" tal:attributes="value here/title" size="80">
   12: 	  </td>
   13: 	</tr>
   14: 	<tr>
   15: 	  <td>
   16: 	    <b>Base URL Prefix:</b>
   17: 	  </td>
   18: 	  <td>
   19: 	    <input name="prefix" tal:attributes="value here/prefix" size="80">
   20: 	  </td>
   21: 	</tr>
   22: 	<tr>
   23: 	  <td>
   24: 	    <i>Ignore path:</i>
   25: 	  </td>
   26: 	  <td>
   27: 	    <input name="ignorePath" tal:attributes="value python:getattr(here,'ignorePath','')" size="80">
   28: 	  </td>
   29: 	</tr>
   30:       </table>
   31:       <tal:block tal:repeat="type here/OSASObjectTypes">
   32: 	<input tal:condition="python:type in here.objectTypes" type="checkbox" name="objectTypes" tal:attributes="value type" checked>
   33: 	<input tal:condition="not:python:type in here.objectTypes" type="checkbox" name="objectTypes" tal:attributes="value type">
   34: 	<tal:block tal:replace="type"/><br>
   35:       </tal:block>
   36:       <input type="submit" value="submit">
   37:     </form>
   38: 
   39: </body>
   40: </html>

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