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>
|
200
|
28 <th>Priority</th><th>Citation</th><th>Collection</th>
|
170
|
29 </tr>
|
|
30 <tr tal:repeat="entry python:here.getSelectedPublications()">
|
|
31 <td valign="top" tal:content="string:[${entry/priority}]" />
|
200
|
32 <tal:x define="entry python:here.mpiwgPubman.getEntryFromPubman(entry.escidocid,withContext=True)">
|
|
33 <tal:x condition="python:entry[1]=='escidoc:644427'">
|
|
34 <td valign="top" tal:content="structure python:entry[0]"/>
|
|
35 <td valign="top">General</td>
|
|
36 </tal:x>
|
|
37 <tal:x condition="not:python:entry[1]=='escidoc:644427'">
|
|
38 <td valign="top" tal:content="structure python:entry[0]"/>
|
|
39 <td valign="top">Institute</td>
|
|
40 </tal:x>
|
|
41
|
|
42 </tal:x>
|
|
43
|
170
|
44 </tr>
|
|
45 </table>
|
|
46
|
|
47 <div tal:condition="python:here.content.publications_mode=='priority'">
|
|
48 <p>
|
|
49 <a tal:attributes="href string:$root/changePublications">Change the selected publications</a>
|
|
50 </p>
|
|
51 <p>
|
|
52 <a tal:attributes="href string:$root/addPublicationsFromPubman">Add an entry to the selected publications</a>
|
|
53 </p>
|
|
54 </div>
|
159
|
55
|
|
56 </tal:block>
|
|
57 </body>
|
|
58 </html> |