File:  [Repository] / OSA_system2 / zpt / changeHandlerObjectForm.zpt
Revision 1.2: download - view: text, annotated - select for diffs - revision graph
Mon Mar 7 19:33:42 2005 UTC (19 years, 2 months ago) by dwinter
Branches: MAIN
CVS tags: HEAD
new handlers

<html>
  <body>
    <form action="changeHandlerObject" method="post">
      <h3>Change Viewer Object</h3>
      <table>
	<tr>
	  <td>
	    <b>Title:</b>
	  </td>
	  <td>
	    <input name="title" tal:attributes="value here/title" size="80">
	  </td>
	</tr>
	<tr>
	  <td>
	    <b>Base URL Prefix:</b>
	  </td>
	  <td>
	    <input name="prefix" tal:attributes="value here/prefix" size="80">
	  </td>
	</tr>
	<tr>
	  <td>
	    <i>Ignore path:</i>
	  </td>
	  <td>
	    <input name="ignorePath" tal:attributes="value python:getattr(here,'ignorePath','')" size="80">
	  </td>
	</tr>
	<tr>
	  <td>
	    <i>Open in new window:</i>
	  </td>
	  <td>
            <input name="newTarget" value="yes" type="checkbox">yes
            <input name="newTarget" value="no" type="checkbox">no
	  </td>
	</tr>
      </table>
      <tal:block tal:repeat="type here/OSASObjectTypes">
	<input tal:condition="python:type in here.objectTypes" type="checkbox" name="objectTypes" tal:attributes="value type" checked>
	<input tal:condition="not:python:type in here.objectTypes" type="checkbox" name="objectTypes" tal:attributes="value type">
	<tal:block tal:replace="type"/><br>
      </tal:block>
      <input type="submit" value="submit">
    </form>

</body>
</html>

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