Mercurial > hg > MPIWGWeb
diff zpt/project/pubman/change_publications.zpt @ 56:a6ace48c2bf2
publication management f?r projekte
author | dwinter |
---|---|
date | Tue, 30 Apr 2013 18:35:08 +0200 |
parents | |
children | 04fb655633ef |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/zpt/project/pubman/change_publications.zpt Tue Apr 30 18:35:08 2013 +0200 @@ -0,0 +1,30 @@ +<!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_template/macros/page"> +<body> +<tal:block metal:fill-slot="navsel" tal:define="global menusel string:talks" /> + +<tal:block metal:fill-slot="body" tal:define="yes_no_list python:'yes\nno'"> + + +<div> +<form action="" method="post"> + +<table> + +<input type="hidden" method="change"/> +<tr tal:repeat="entry python:here.getSelectedPublications()"> +<td><input type="checkbox" value="delete" tal:attributes="name python:entry.escidocid"/></td> +<td><input type="text" size="5" tal:attributes="name python:entry.escidocid+'__p'; value python:entry.priority"/></td> +<td><tal:x tal:replace="structure python:here.mpiwgPubman.getEntryFromPubman(entry.escidocid)"/></td> +</tr> + +</table> +<input type="submit" value="submit"/> + +</form> + +</div> +</tal:block> +</body> +</html>