File:  [Repository] / MPIWGWeb / zpt / edit_MPIWGDisciplinesThemes.zpt
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Tue Jul 6 16:49:36 2004 UTC (19 years, 11 months ago) by dwinter
Branches: MAIN
CVS tags: r2, HEAD
added functions for staff

<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: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>