Diff for /MPIWGWeb/zpt/Attic/editMainData.zpt between versions 1.1.2.5 and 1.1.2.11

version 1.1.2.5, 2006/04/05 13:03:10 version 1.1.2.11, 2010/02/10 18:25:45
Line 4 Line 4
 <body>  <body>
   <tal:block metal:fill-slot="navsel" tal:define="global menusel string:maindata"/>    <tal:block metal:fill-slot="navsel" tal:define="global menusel string:maindata"/>
   <tal:block metal:fill-slot="body" tal:define="yes_no_list python:'yes\nno';    <tal:block metal:fill-slot="body" tal:define="yes_no_list python:'yes\nno';
   global person python:here.ZSQLInlineSearchU(_table='personal_www',id=here.getDBId())"    global person python:here.ZSQLInlineSearchU(_table='personal_www',key=here.getKeyUTF8())"
   >    >
   <form action="" method="get">    <form action="editMainData" method="get">
   <table>    <table>
     <tr>      <tr>
         <td><b>Name</b></td>          <td><b>Name</b></td>
         <td><input size="30" tal:attributes="value person/name" name="name"></td>          <td><input size="30" tal:attributes="value python:here.unicodify(person.last_name)" name="last_name"></td>
     </tr>      </tr>
     <tr>      <tr>
         <td><b>First Name</b></td>          <td><b>First Name</b></td>
         <td><input size="30" tal:attributes="value person/vorname" name="vorname"></td>          <td><input size="30" tal:attributes="value python:here.decode(person.first_name)" name="first_name"></td>
     </tr>      </tr>
     <tr>      <tr>
         <td><b>Title</b></td>          <td><b>Academic degrees and position</b></td>
         <td><input size="30" tal:attributes="value person/title" name="title"></td>          <td><textarea  tal:content="python:here.decode(person.titles_new)" name="titles_new" cols="60" rows="3"/></td>
       </tr>
       <tr>
           <td><b>Status</b></td>
           <td tal:content="python:here.decode(person.status)"/>
     </tr>      </tr>
     <tr>      <tr>
         <td><b>Department</b></td>          <td><b>Department</b></td>
         <td tal:content="person/abteilung"/>          <td tal:content="python:here.decode(person.department)"/>
     </tr>      </tr>
     <tr>      <tr>
         <td><b>Stay</b></td>          <td><b>Stay</b></td>
         <td><span tal:content="person/date_from"/> to          <td><span tal:content="python:here.decode(person.date_from)"/> to
           <span tal:content="person/date_to"/>            <span tal:content="python:here.decode(person.date_to)"/>
         </td>          </td>
     <tr>      <tr>
         <td><b>Funded by (external funding)</b></td>          <td><b>Funded by (external funding)</b></td>
         <td><input size="30" tal:attributes="value person/funded_by" name="funded_by"></td>          <td><input size="30" tal:attributes="value python:here.decode(person.funded_by)" name="funded_by"></td>
     </tr>      </tr>
           
     <tr>  <!--    <tr>
         <td><b>Home institution</b></td>          <td><b>Home institution</b></td>
         <td><input size="30" tal:attributes="value person/heimat_inst" name="heimat_inst"></td>          <td><input size="30" tal:attributes="value python:here.decode(person.home_inst)" name="home_inst"></td>
     </tr>      </tr>-->
  </table>   </table>
  <table>   <table>
     <tr><th></th><th></th><th align="left">show</th></tr>      <tr><th></th><th></th><th align="left">show</th></tr>
     <tr>      <tr>
         <td><b>email (MPIWG)</b></td>          <td><b>email (MPIWG)</b></td>
         <td tal:content="person/e_mail"/>          <td tal:content="python:here.decode(person.e_mail)"/>
         <td valign="top" tal:content="structure python:here.ZSQLSelectionFromCRList(          <td valign="top" tal:content="structure python:here.ZSQLSelectionFromCRList(
                  'e_mail_p',                   'e_mail_p',
                  yes_no_list,                   yes_no_list,
Line 52 Line 56
     </tr>      </tr>
     <tr>      <tr>
         <td><b>email (additional)</b></td>          <td><b>email (additional)</b></td>
         <td><input size="30" name="e_mail2" tal:attributes="value person/e_mail2"></td>          <td><input size="30" name="e_mail2" tal:attributes="value python:here.decode(person.e_mail2)"></td>
         <td valign="top" tal:content="structure python:here.ZSQLSelectionFromCRList(          <td valign="top" tal:content="structure python:here.ZSQLSelectionFromCRList(
                  'e_mail2_p',                   'e_mail2_p',
                  yes_no_list,                   yes_no_list,
Line 61 Line 65
     </tr>      </tr>
     <tr>      <tr>
         <td><b>Room</b></td>          <td><b>Room</b></td>
         <td><input size="30" name="room_no" tal:attributes="value person/room_no"></td>          <td><input size="30" name="room_no" tal:attributes="value python:here.decode(person.room_no)"></td>
         <td>(never published)</td>          <td>(never published)</td>
     </tr>      </tr>
           
     <tr>  <!--    <tr>
         <td><b>Private homepage</b></td>          <td><b>Private homepage</b></td>
         <td><input size="30" name="private_homepage" tal:attributes="value person/private_homepage"></td>          <td><input size="30" name="private_homepage" tal:attributes="value python:here.decode(person.private_homepage)"></td>
         <td>&nbsp;</td>          <td>&nbsp;</td>
     </tr>      </tr>
        -->    
     <tr>      <tr>
         <td><b>Telephone</b></td>          <td><b>Telephone</b></td>
         <td><input size="30" name="telefon" tal:attributes="value person/telefon"></td>          <td><input size="30" name="telefon" tal:attributes="value python:here.decode(person.telefon)"></td>
         <td valign="top" tal:content="structure python:here.ZSQLSelectionFromCRList(          <td valign="top" tal:content="structure python:here.ZSQLSelectionFromCRList(
                  'telefon_p',                   'telefon_p',
                  yes_no_list,                   yes_no_list,
Line 82 Line 86
     </tr>      </tr>
     <tr>      <tr>
         <td><b>Fax</b></td>          <td><b>Fax</b></td>
         <td><input size="30" name="fax" tal:attributes="value person/fax"></td>          <td><input size="30" name="fax" tal:attributes="value python:here.decode(person.fax)"></td>
         <td valign="top" tal:content="structure python:here.ZSQLSelectionFromCRList(          <td valign="top" tal:content="structure python:here.ZSQLSelectionFromCRList(
                  'fax_p',                   'fax_p',
                  yes_no_list,                   yes_no_list,
Line 92 Line 96
  </table>   </table>
  <input type="submit" value="submit">   <input type="submit" value="submit">
  </form>   </form>
    <p>To add references to your homepage at other institutions plese use <a href="editAdditionalLinks">the additional links tab</a></p>
  </tal:block>   </tal:block>
  </body>   </body>
  </html>   </html>

Removed from v.1.1.2.5  
changed lines
  Added in v.1.1.2.11


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