Annotation of MPIWGWeb/zpt/edit_MPIWGDisciplinesThemes.zpt, revision 1.1.2.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">
1.1.2.1 ! dwinter     6: <tal:block tal:replace="python:here.getContent('xdata_09')"/>
1.1       dwinter     7: 
                      8: <tal:block tal:repeat="discipline here/getDisciplineList">
                      9:   <tal:block tal:condition="python:here.isChecked(discipline,here.getContent('xdata_09'))">
                     10:     <input tal:attributes="value discipline" name="disciplines" type="checkbox" checked><span tal:replace="discipline"/>
                     11:   </tal:block>
                     12:   <tal:block tal:condition="not:python:here.isChecked(discipline,here.getContent('xdata_09'))">
                     13:     <input tal:attributes="value discipline" name="disciplines" type="checkbox"><span tal:replace="discipline"/>
                     14:   </tal:block>
                     15: </tal:block>
                     16: <br>
                     17: <h3>Themes</h3>
                     18: <tal:block tal:repeat="theme here/getThemeList">
                     19:   <tal:block tal:condition="python:here.isChecked(theme,here.getContent('xdata_10'))">
                     20:     <input tal:attributes="value theme" name="themes" type="checkbox" checked><span tal:replace="theme"/>
                     21:   </tal:block>
                     22:   <tal:block tal:condition="not:python:here.isChecked(theme,here.getContent('xdata_10'))">
                     23:     <input tal:attributes="value theme" name="themes" type="checkbox"><span tal:replace="theme"/>
                     24:   </tal:block><br>
                     25: </tal:block>
                     26: <br>
                     27: <input type="submit" value="change">
                     28: </form>
                     29: </body>
                     30: </html>

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