version 1.1.2.1, 2005/10/10 08:42:49
|
version 1.1.2.5, 2005/10/20 14:04:43
|
Line 1
|
Line 1
|
|
<!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/mainEditFile/macros/page"> |
<html metal:use-macro="here/mainEditFile/macros/page"> |
|
<body> |
|
<tal:block metal:fill-slot="navsel" tal:define="global menusel string:publications" /> |
|
|
<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'"> |
|
|
<h3>Manage Publications</h3> |
<h3>Add entries from the institutsbibliographie</h3> |
<p><a href="editPublications">Change order</a></p> |
<form name="search" action="addPublications" method="get"> |
|
|
<p>Search entries in the insitutsbliobgraphie</p> |
|
<form action="addPublications" method="get"> |
|
<tal:block tal:define="dummy python:here.REQUEST.RESPONSE.setCookie('fromSearch','1')"/> |
|
<table> |
<table> |
<tr> |
<tr> |
<td>Author</td> |
<td>Author</td> |
Line 20
|
Line 20
|
<td><input name="title" len="30"></td> |
<td><input name="title" len="30"></td> |
</tr> |
</tr> |
</table> |
</table> |
<input type="submit" value="submit"> |
<input type="submit" value="search"> |
</form> |
</form> |
<tal:block tal:condition="python:here.REQUEST.cookies.get('fromSearch','0')=='1'"> |
<form name="add" action="addPublications" method="get"> |
<tal:block tal:define="dummy python:here.REQUEST.RESPONSE.setCookie('fromSearch','0')"/> |
<input type="hidden" value="add" name="mode"> |
|
<tal:block tal:condition="python:here.REQUEST.get('fromSearch','0')=='1'"> |
<table> |
<table> |
<tr tal:repeat="foundb python:here.ZSQLFind(_table='institutsbiblio')"> |
<tr tal:repeat="foundb python:here.ZSQLFind(_table='institutsbiblio')"> |
<td> |
<td><input type="checkbox" tal:attributes="value python:str(foundb.id)" name="addEntries"></td> |
<input type="checkbox" tal:attributes="value python:'add_'+str(foundb.id)"> |
|
</td> |
|
<td tal:content="structure python:here.formatBiblHelp(None,'','',foundb)"/> |
<td tal:content="structure python:here.formatBiblHelp(None,'','',foundb)"/> |
</tr> |
</tr> |
</table> |
</table> |
|
<input type="submit" value="add" name="submit"> |
</tal:block> |
</tal:block> |
|
</form> |
|
<h3><a href="newBibliography">Add a separate entry</a></h3> |
|
<h3><a href="editPublications">Back to publication list</a></h3> |
</tal:block> |
</tal:block> |
</html> |
</html> |