47
|
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>
|
159
|
5 <tal:block metal:fill-slot="navsel" tal:define="global menusel string:publications" />
|
|
6 <tal:block metal:fill-slot="body">
|
|
7
|
170
|
8 <form method="post" tal:attributes="action string:$root/editPublications">
|
47
|
9
|
170
|
10 <h3>Selection mode</h3>
|
|
11 <p>
|
|
12 <input type="radio" name="selectionMode" value="year"
|
|
13 tal:attributes="checked python:here.content.publications_mode=='year'" />
|
|
14 Show the five most recent publications. (no further action needed)<br/>
|
159
|
15 <input type="radio" name="selectionMode" value="priority"
|
170
|
16 tal:attributes="checked python:here.content.publications_mode=='priority'" />
|
|
17 Show selected publications.
|
|
18 </p>
|
|
19 <p>
|
|
20 <input type="submit" value="Set mode" />
|
|
21 </p>
|
159
|
22 </form>
|
|
23
|
170
|
24 <h3>Publications</h3>
|
159
|
25
|
170
|
26 <table>
|
|
27 <tr>
|
|
28 <th>Priority</th><th>Citation</th>
|
|
29 </tr>
|
|
30 <tr tal:repeat="entry python:here.getSelectedPublications()">
|
|
31 <td valign="top" tal:content="string:[${entry/priority}]" />
|
|
32 <td valign="top" tal:content="structure python:here.mpiwgPubman.getEntryFromPubman(entry.escidocid)"/>
|
|
33 </tr>
|
|
34 </table>
|
|
35
|
|
36 <div tal:condition="python:here.content.publications_mode=='priority'">
|
|
37 <p>
|
|
38 <a tal:attributes="href string:$root/changePublications">Change the selected publications</a>
|
|
39 </p>
|
|
40 <p>
|
|
41 <a tal:attributes="href string:$root/addPublicationsFromPubman">Add an entry to the selected publications</a>
|
|
42 </p>
|
|
43 </div>
|
159
|
44
|
|
45 </tal:block>
|
|
46 </body>
|
|
47 </html> |