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
|
47
|
8
|
159
|
9 <h2>Selection mode</h2>
|
|
10 <form method="post" action="">
|
|
11 <input type="radio" name="selectionMode" value="year" tal:attributes="checked python:here.content.publications_mode=='year'" />
|
|
12 Show the five most recent publications. (no further action needed)
|
|
13 <input type="radio" name="selectionMode" value="priority"
|
|
14 tal:attributes="checked python:here.content.publications_mode=='priority'" />Show selected publications.
|
|
15 <input type="submit" name="submit" />
|
|
16 </form>
|
|
17
|
|
18 <ul tal:condition="python:here.content.publications_mode=='priority'">
|
|
19 <li><a href="addPublicationsFromPubman">Add an Entry</a></li>
|
|
20 <li><a href="changePublications">Delete entries from the list or Change the priorities</a></li>
|
|
21
|
|
22 </ul>
|
|
23
|
|
24 </tal:block>
|
|
25 </body>
|
|
26 </html> |