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>
|
170
|
5 <tal:block metal:fill-slot="navsel" tal:define="global menusel string:publications" />
|
47
|
6
|
170
|
7 <tal:block metal:fill-slot="body">
|
|
8 <h3>Search publication to select</h3>
|
|
9 <form action="" method="post">
|
|
10 <input type="hidden" name="method" value="search" />
|
|
11 <table>
|
|
12 <tr>
|
|
13 <td>Author/Editor</td>
|
|
14 <td><input type="text" size="30" name="author" /></td>
|
|
15 </tr>
|
|
16 <tr>
|
|
17 <td>Title</td>
|
|
18 <td><input type="text" size="30" name="title" /></td>
|
|
19 </tr>
|
|
20 <tr>
|
|
21 <td>Somewhere in the metadata</td>
|
|
22 <td><input type="text" size="30" name="any" /></td>
|
|
23 </tr>
|
|
24 </table>
|
|
25 <p>
|
|
26 <input type="submit" value="Search" />
|
|
27 </p>
|
|
28 </form>
|
47
|
29
|
170
|
30 <div tal:condition="python:options.has_key('values')">
|
|
31 <form action="" method="post">
|
|
32 <input type="hidden" name="method" value="add" />
|
|
33 <h3>Select publication(s) to add</h3>
|
|
34 <table>
|
|
35 <tr tal:repeat="entry python:options['values'].items()">
|
|
36 <td><input type="checkbox" value="add" tal:attributes="name python:entry[0]" /></td>
|
|
37 <td><tal:x tal:replace="structure python:entry[1]" /></td>
|
|
38 </tr>
|
|
39 </table>
|
|
40 <p>
|
|
41 <input type="submit" value="Add to selected publications" />
|
|
42 </p>
|
|
43 <p>
|
|
44 <a tal:attributes="href string:$root/editPublications">Back to publication list</a>
|
|
45 </p>
|
|
46 </form>
|
47
|
47
|
170
|
48 </div>
|
|
49 </tal:block>
|
47
|
50 </body>
|
|
51 </html>
|