version 1.1.2.3, 2005/10/18 19:37:32
|
version 1.1.2.7, 2008/08/26 15:01:41
|
Line 2
|
Line 2
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
<html metal:use-macro="here/mainEditFile/macros/page"> |
<html metal:use-macro="here/mainEditFile/macros/page"> |
<body> |
<body> |
<tal:block metal:fill-slot="navsel" tal:define="global selected python:'teaching'" /> |
<tal:block metal:fill-slot="navsel" tal:define="global menusel string:teaching" /> |
|
|
<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'"> |
<form action="changeResearch" method="post"> |
<form action="changeResearch" method="post"> |
<input type="hidden" name="id_main" tal:attributes="value person/id"> |
<input type="hidden" name="key_main" tal:attributes="value python:here.decode(person.key)"> |
<input type="hidden" name="main_fields" value="teaching__title"> |
<input type="hidden" name="main_fields" value="teaching__title"> |
<table tal:define="founds2 python:here.ZSQLInlineSearch(_table='teaching',id_main=person.id)"> |
<table tal:define="founds2 python:here.ZSQLInlineSearch(_table='teaching',key_main=person.key)"> |
<tr> |
<tr> |
<th>Date</th> |
<th>Date</th> |
<th>Title/Place/Link</th> |
<th>Title/Place/Link</th> |
Line 17
|
Line 17
|
</tr> |
</tr> |
<tr class="fliesstext" tal:repeat="found2 python:here.sortPriority(founds2)"> |
<tr class="fliesstext" tal:repeat="found2 python:here.sortPriority(founds2)"> |
<td valign="top"><input tal:attributes="name python:'teaching__date__'+str(found2.oid); |
<td valign="top"><input tal:attributes="name python:'teaching__date__'+str(found2.oid); |
value found2/date" size="10" /> |
value python:here.decode(found2.date)" size="10" /> |
</td> |
</td> |
|
|
<td><input tal:attributes="name python:'teaching__title__'+str(found2.oid); |
<td><input tal:attributes="name python:'teaching__title__'+str(found2.oid); |
value found2/title" size="80" /> <br> |
value python:here.decode(found2.title)" size="80" /> <br> |
<input tal:attributes="name python:'teaching__place__'+str(found2.oid); |
<input tal:attributes="name python:'teaching__place__'+str(found2.oid); |
value found2/place" size="80" /> <br> |
value python:here.decode(found2.place)" size="80" /> <br> |
<input tal:attributes="name python:'teaching__link__'+str(found2.oid); |
<input tal:attributes="name python:'teaching__link__'+str(found2.oid); |
value found2/link" size="80" /></td> |
value python:here.decode(found2.link)" size="80" /></td> |
|
|
<td valign="top"><input tal:attributes="name python:'teaching__priority__'+str(found2.oid); |
<td valign="top"><input tal:attributes="name python:'teaching__priority__'+str(found2.oid); |
value found2/priority" |
value found2/priority" |