Annotation of MPIWGWeb/zpt/edit_MPIWGDisciplinesThemes.zpt, revision 1.1

1.1     ! dwinter     1: <html>
        !             2: <body>
        !             3: <h2>Edit Disciplines and themes: <span tal:replace="python:here.WEB_title[0]"/></h2>
        !             4: <h3>Disciplines</h3>
        !             5: <form method="post" action="editMPIWGDisciplinesThemes">
        !             6: 
        !             7: <tal:block tal:repeat="discipline here/getDisciplineList">
        !             8:   <tal:block tal:condition="python:here.isChecked(discipline,here.getContent('xdata_09'))">
        !             9:     <input tal:attributes="value discipline" name="disciplines" type="checkbox" checked><span tal:replace="discipline"/>
        !            10:   </tal:block>
        !            11:   <tal:block tal:condition="not:python:here.isChecked(discipline,here.getContent('xdata_09'))">
        !            12:     <input tal:attributes="value discipline" name="disciplines" type="checkbox"><span tal:replace="discipline"/>
        !            13:   </tal:block>
        !            14: </tal:block>
        !            15: <br>
        !            16: <h3>Themes</h3>
        !            17: <tal:block tal:repeat="theme here/getThemeList">
        !            18:   <tal:block tal:condition="python:here.isChecked(theme,here.getContent('xdata_10'))">
        !            19:     <input tal:attributes="value theme" name="themes" type="checkbox" checked><span tal:replace="theme"/>
        !            20:   </tal:block>
        !            21:   <tal:block tal:condition="not:python:here.isChecked(theme,here.getContent('xdata_10'))">
        !            22:     <input tal:attributes="value theme" name="themes" type="checkbox"><span tal:replace="theme"/>
        !            23:   </tal:block><br>
        !            24: </tal:block>
        !            25: <br>
        !            26: <input type="submit" value="change">
        !            27: </form>
        !            28: </body>
        !            29: </html>

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