File:  [Repository] / MPIWGWeb / zpt / edit_MPIWGDisciplinesThemes.zpt
Revision 1.2: download - view: text, annotated - select for diffs - revision graph
Wed Feb 18 13:01:17 2009 UTC (15 years, 3 months ago) by dwinter
Branches: MAIN
CVS tags: HEAD
*** empty log message ***

<html>
<body>
<h2>Edit Disciplines and themes: <span tal:replace="python:here.WEB_title[0]"/></h2>
<h3>Disciplines</h3>
<form method="post" action="editMPIWGDisciplinesThemes">
<tal:block tal:replace="python:here.getContent('xdata_09')"/>

<tal:block tal:repeat="discipline here/getDisciplineList">
  <tal:block tal:condition="python:here.isChecked(discipline,here.getContent('xdata_09'))">
    <input tal:attributes="value discipline" name="disciplines" type="checkbox" checked><span tal:replace="discipline"/>
  </tal:block>
  <tal:block tal:condition="not:python:here.isChecked(discipline,here.getContent('xdata_09'))">
    <input tal:attributes="value discipline" name="disciplines" type="checkbox"><span tal:replace="discipline"/>
  </tal:block>
</tal:block>
<br>
<h3>Themes</h3>
<tal:block tal:repeat="theme here/getThemeList">
  <tal:block tal:condition="python:here.isChecked(theme,here.getContent('xdata_10'))">
    <input tal:attributes="value theme" name="themes" type="checkbox" checked><span tal:replace="theme"/>
  </tal:block>
  <tal:block tal:condition="not:python:here.isChecked(theme,here.getContent('xdata_10'))">
    <input tal:attributes="value theme" name="themes" type="checkbox"><span tal:replace="theme"/>
  </tal:block><br>
</tal:block>
<br>
<input type="submit" value="change">
</form>
</body>
</html>

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