37
|
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
3 <html metal:use-macro="here/mainEditFile/macros/page">
|
|
4 <body>
|
|
5 <tal:block metal:fill-slot="navsel" tal:define="global menusel string:maindata"/>
|
|
6 <tal:block metal:fill-slot="body" tal:define="yes_no_list python:'yes\nno'">
|
|
7 <form action="" method="get">
|
|
8 <table>
|
|
9 <tr>
|
|
10 <td><b>Name</b></td>
|
|
11 <td><input size="30" tal:attributes="value python:here.content.last_name" name="last_name"></td>
|
|
12 </tr>
|
|
13 <tr>
|
|
14 <td><b>First Name</b></td>
|
|
15 <td><input size="30" tal:attributes="value python:here.content.first_name" name="first_name"></td>
|
|
16 </tr>
|
|
17 <tr>
|
|
18 <td><b>Academic degrees and position</b></td>
|
|
19 <td><textarea tal:content="python:here.content.titles_new" name="titles_new" cols="60" rows="3"/></td>
|
|
20 </tr>
|
|
21 <tr>
|
|
22 <td><b>Status</b></td>
|
|
23 <td tal:content="python:here.content.status"/>
|
|
24 </tr>
|
|
25 <tr>
|
|
26 <td><b>Department</b></td>
|
|
27 <td tal:content="python:here.content.department"/>
|
|
28 </tr>
|
|
29 <tr>
|
|
30 <td><b>Stay</b></td>
|
|
31 <td><span tal:content="python:here.content.date_from"/> to
|
|
32 <span tal:content="python:here.content.date_to"/>
|
|
33 </td>
|
|
34 <tr>
|
|
35 <td><b>Funded by (external funding)</b></td>
|
|
36 <td><input size="30" tal:attributes="value python:here.content.funded_by" name="funded_by"></td>
|
|
37 </tr>
|
|
38
|
|
39 <!-- <tr>
|
|
40 <td><b>Home institution</b></td>
|
|
41 <td><input size="30" tal:attributes="value python:here.content.home_inst" name="home_inst"></td>
|
|
42 </tr>-->
|
|
43 </table>
|
|
44 <table>
|
|
45 <tr><th></th><th></th><th align="left">show</th></tr>
|
|
46 <tr>
|
|
47 <td><b>email (MPIWG)</b></td>
|
|
48 <td tal:content="python:here.content.e_mail"/>
|
|
49 <td valign="top" tal:content="structure python:here.ZSQLSelectionFromCRList(
|
|
50 'e_mail_p',
|
|
51 yes_no_list,
|
|
52 boxType='radio',
|
|
53 checked=here.content.e_mail_p)"/>
|
|
54 </tr>
|
|
55 <tr>
|
|
56 <td><b>email (additional)</b></td>
|
|
57 <td><input size="30" name="e_mail2" tal:attributes="value python:here.content.e_mail2"></td>
|
|
58 <td valign="top" tal:content="structure python:here.ZSQLSelectionFromCRList(
|
|
59 'e_mail2_p',
|
|
60 yes_no_list,
|
|
61 boxType='radio',
|
|
62 checked=here.content.e_mail2_p)"/>
|
|
63 </tr>
|
|
64 <tr>
|
|
65 <td><b>Room</b></td>
|
|
66 <td><input size="30" name="room_no" tal:attributes="value python:here.content.room_no"></td>
|
|
67 <td>(never published)</td>
|
|
68 </tr>
|
|
69
|
|
70 <!-- <tr>
|
|
71 <td><b>Private homepage</b></td>
|
|
72 <td><input size="30" name="private_homepage" tal:attributes="value python:here.decode(person.private_homepage)"></td>
|
|
73 <td> </td>
|
|
74 </tr>
|
|
75 -->
|
|
76 <tr>
|
|
77 <td><b>Telephone</b></td>
|
|
78 <td><input size="30" name="telefon" tal:attributes="value python:here.content.telefon"></td>
|
|
79 <td valign="top" tal:content="structure python:here.ZSQLSelectionFromCRList(
|
|
80 'telefon_p',
|
|
81 yes_no_list,
|
|
82 boxType='radio',
|
|
83 checked=here.content.telefon_p)"/>
|
|
84 </tr>
|
|
85 <tr>
|
|
86 <td><b>Fax</b></td>
|
|
87 <td><input size="30" name="fax" tal:attributes="value python:here.content.fax"></td>
|
|
88 <td valign="top" tal:content="structure python:here.ZSQLSelectionFromCRList(
|
|
89 'fax_p',
|
|
90 yes_no_list,
|
|
91 boxType='radio',
|
|
92 checked=here.content.fax_p)"/>
|
|
93 </tr>
|
|
94 </table>
|
|
95 <input type="submit" value="submit">
|
|
96 </form>
|
|
97 <p>To add references to your homepage at other institutions plese use <a href="editAdditionalLinks">the additional links tab</a></p>
|
|
98 </tal:block>
|
|
99 </body>
|
|
100 </html>
|
|
101 |