comparison zpt/staff/edit_publications.zpt @ 159:ee79f6ba8d01

clean up staff editing and some zpt forms.
author casties
date Thu, 06 Jun 2013 15:34:20 +0200
parents 225179dfd892
children 485bf377913a
comparison
equal deleted inserted replaced
158:86a5b3c4af4b 159:ee79f6ba8d01
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html metal:use-macro="here/mainEditFile/macros/page"> 3 <html metal:use-macro="here/mainEditFile/macros/page">
4 <body> 4 <body>
5 <tal:block metal:fill-slot="navsel" tal:define="global menusel string:maindata"/> 5 <tal:block metal:fill-slot="navsel" tal:define="global menusel string:publications" />
6 <tal:block metal:fill-slot="body" tal:define="yes_no_list python:'yes\nno'"> 6 <tal:block metal:fill-slot="body">
7
8
9 <h2>Selection mode</h2>
10 <form method="post" action="">
11
12
13 <input type="radio" name="selectionMode" value="year" tal:attributes="checked python:test(here.content.publications_mode=='year','true','')"/>
14 Show the five most recent publications. (no further action needed)
15 <input type="radio" name="selectionMode" value="priority" tal:attributes="checked python:test(here.content.publications_mode=='priority','true','')"/>Show selected publications.
16 <input type="submit" name="submit"/>
17 </form>
18 7
19 8
20 9 <h2>Selection mode</h2>
21 <ul tal:condition="python:here.content.publications_mode=='priority'"> 10 <form method="post" action="">
22 <li><a href="addPublicationsFromPubman">Add an Entry</a></li> 11 <input type="radio" name="selectionMode" value="year" tal:attributes="checked python:here.content.publications_mode=='year'" />
23 <li><a href="changePublications">Delete entries from the list or Change the priorities</a></li> 12 Show the five most recent publications. (no further action needed)
24 13 <input type="radio" name="selectionMode" value="priority"
25 </ul> 14 tal:attributes="checked python:here.content.publications_mode=='priority'" />Show selected publications.
26 15 <input type="submit" name="submit" />
27 </tal:block> 16 </form>
28 </body> 17
29 </html> 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>