Annotation of OSA_system2/zpt/changeViewerObjectForm.zpt, revision 1.1.1.1

1.1       dwinter     1: <html>
                      2:   <body>
                      3:     <form action="changeViewerObject" 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>