Diff for /MPIWGWeb/zpt/Attic/edit_MPIWGDisciplinesThemesNeu.zpt between versions 1.1.2.3 and 1.1.2.4

version 1.1.2.3, 2005/09/15 12:57:41 version 1.1.2.4, 2005/10/19 15:16:14
Line 1 Line 1
 <html>  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
             "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
   <html metal:use-macro="here/edit_MPIWGProject_main/macros/page">
 <head>  <head>
 <style type="text/css">  
 <!--  
 .add-nav {  
 font-weight:bold;  
 padding-left:8px;  
 }  
 -->  
 </head>  </head>
 <body>  <body>
 <h2>Edit: <i tal:content="python:here.getContent('WEB_title')"/></h2>  <tal:block metal:fill-slot="navsel" tal:define="global menusel string:themes" />
 <p><a class="add-nav" href="edit">Project Description</a> <a class="add-nav" href="managePublications">Publications</a><a class="add-nav" href="manageImages">Images at the margin</a><a class="add-nav">Themes and disciplines</a><a class="add-nav" href="editMPIWGBasisEditor">Additional information</a></p>  <tal:block metal:fill-slot="body">
 <hr>    <h3>Disciplines</h3>
   
 <h3>Edit Disciplines and themes</h3>  
 <h4>Disciplines</h4>  
 <form method="post" action="editMPIWGDisciplinesThemes">  <form method="post" action="editMPIWGDisciplinesThemes">
 <input type="hidden" name="fromEdit" value="yes"/>  <input type="hidden" name="fromEdit" value="yes"/>
 <tal:block tal:repeat="discipline here/getDisciplineList">    <ul class="plain" tal:repeat="discipline here/getDisciplineList">
   <tal:block tal:condition="python:here.isChecked(discipline,here.getContent('xdata_09'))">      <li tal:condition="python:here.isChecked(discipline,here.getContent('xdata_09'))">
     <input tal:attributes="value discipline" name="disciplines" type="checkbox" checked><span tal:replace="discipline"/>        <input tal:attributes="value discipline" name="disciplines" type="checkbox" checked>
   </tal:block>        <span tal:replace="discipline" />
   <tal:block tal:condition="not:python:here.isChecked(discipline,here.getContent('xdata_09'))">      </li>
     <input tal:attributes="value discipline" name="disciplines" type="checkbox"><span tal:replace="discipline"/>      <li tal:condition="not:python:here.isChecked(discipline,here.getContent('xdata_09'))">
   </tal:block>        <input tal:attributes="value discipline" name="disciplines" type="checkbox">
 </tal:block>        <span tal:replace="discipline" />
       </li>
     </ul>
 <br>  <br>
 <h4>Themes</h4>    <h3>Themes</h3>
 <tal:block tal:repeat="theme here/getThemeList">    <ul class="plain" tal:repeat="theme here/getThemeList">
   <tal:block tal:condition="python:here.isChecked(theme,here.getContent('xdata_10'))">      <li tal:condition="python:here.isChecked(theme,here.getContent('xdata_10'))">
     <input tal:attributes="value theme" name="themes" type="checkbox" checked><span tal:replace="theme"/>        <input tal:attributes="value theme" name="themes" type="checkbox" checked>
   </tal:block>        <span tal:replace="theme" />
   <tal:block tal:condition="not:python:here.isChecked(theme,here.getContent('xdata_10'))">      </li>
     <input tal:attributes="value theme" name="themes" type="checkbox"><span tal:replace="theme"/>      <li tal:condition="not:python:here.isChecked(theme,here.getContent('xdata_10'))">
   </tal:block><br>        <input tal:attributes="value theme" name="themes" type="checkbox">
 </tal:block>        <span tal:replace="theme" />
 <br>      </li>
 <input type="submit" value="change">    </ul>
     <p><input type="submit" value="change"/></p>
 </form>  </form>
   </tal:block>
 </body>  </body>
 </html>  </html>

Removed from v.1.1.2.3  
changed lines
  Added in v.1.1.2.4


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