Mercurial > hg > MPIWGWeb
view zpt/staff/edit_publications.zpt @ 248:a14e462fca1c
add license-page link to page footer.
author | casties |
---|---|
date | Tue, 18 Mar 2014 10:18:35 +0100 |
parents | 5584046a6a04 |
children |
line wrap: on
line source
<!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"> <body> <tal:block metal:fill-slot="navsel" tal:define="global menusel string:publications" /> <tal:block metal:fill-slot="body"> <form method="post" tal:attributes="action string:$root/editPublications"> <h3>Selection mode</h3> <p> <input type="radio" name="selectionMode" value="year" tal:attributes="checked python:here.content.publications_mode=='year'" /> Show the publications sorted by Date. (no further action needed)<br/> <input type="radio" name="selectionMode" value="priority" tal:attributes="checked python:here.content.publications_mode=='priority'" /> Show only selected publications by priority. </p> <p> Number of items on profile page: <input name="publications_num" size="2" tal:attributes="value python:here.content.publications_num or 5"/> </p> <p> <input type="submit" value="Set mode" /> </p> </form> <h3>Publications</h3> <table> <tr> <th>Priority</th><th>Citation</th><th>Collection</th> </tr> <tr tal:repeat="entry python:here.getSelectedPublications()"> <td valign="top" tal:content="string:[${entry/priority}]" /> <tal:x define="entry python:here.mpiwgPubman.getEntryFromPubman(entry.escidocid,withContext=True)"> <tal:x condition="python:entry[1]=='escidoc:644427'"> <td valign="top" tal:content="structure python:entry[0]"/> <td valign="top">General</td> </tal:x> <tal:x condition="not:python:entry[1]=='escidoc:644427'"> <td valign="top" tal:content="structure python:entry[0]"/> <td valign="top">Institute</td> </tal:x> </tal:x> </tr> </table> <div tal:condition="python:here.content.publications_mode=='priority'"> <p> <a tal:attributes="href string:$root/changePublications">Change the selected publications</a> </p> <p> <a tal:attributes="href string:$root/addPublicationsFromPubman">Add an entry to the selected publications</a> </p> </div> </tal:block> </body> </html>