File:  [Repository] / MPIWGWeb / zpt / edit_MPIWGDisciplinesThemes.zpt
Revision 1.1.2.1: download - view: text, annotated - select for diffs - revision graph
Wed Jun 8 20:13:17 2005 UTC (19 years ago) by dwinter
Branches: r2
minor

    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: <tal:block tal:replace="python:here.getContent('xdata_09')"/>
    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>