first go at moving templates to a modules/ dir
[koha_ffzg] / koha-tmpl / intranet-tmpl / prog / en / modules / acqui / newordersuggestion.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Add order from suggestion: <!-- TMPL_VAR name="bookselname" --></title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4
5 <!-- TMPL_INCLUDE NAME="menus.inc" -->
6 <!-- TMPL_INCLUDE NAME="menu-acqui.inc" -->
7
8 <h1>Suggestions</h1>
9 <div id="acqui_suggestion_select">
10     <form action="/cgi-bin/koha/acqui/newordersuggestion.pl" method="get">
11     <table>
12         <tr>
13             <th>Suggestion</th>
14             <th>Suggested by</th>
15             <th>Accepted by</th>
16             <th>&nbsp;</th>
17         </tr>
18         <tr>
19             <th>
20                  Filter on :
21                 <p>
22                 title: <input type="text" name="title" value="<!-- TMPL_VAR NAME="title"-->" />
23                 author: <input type="text" name="author" value="<!-- TMPL_VAR NAME="author" -->" />
24                 publisher: <input type="text" name="publishercode" value="<!-- TMPL_VAR NAME="publishercode"-->" /></p>
25             </th>
26             <th>
27                 &nbsp;
28             </th>
29             <th>
30                 &nbsp;
31             </th>
32             <th>
33                 <input type="submit" class="button acquisition" value="Set Filter" />
34             </th>
35         </tr>
36         <!-- TMPL_LOOP NAME="suggestions_loop" -->
37             <tr>
38                 <td>
39                     <p><!-- TMPL_VAR NAME="title" --> - <!-- TMPL_VAR NAME="author" --></p>
40                     <p>
41                         <!-- TMPL_IF name="copyrightdate" -->copy. year:<!-- TMPL_VAR NAME="copyrightdate" --> <!-- /TMPL_IF -->
42                         <!-- TMPL_IF name="volumedesc" -->volume:<i><!-- TMPL_VAR NAME="volumedesc" --></i> <!-- /TMPL_IF -->
43                         <!-- TMPL_IF name="isbn" -->ISBN :<i><!-- TMPL_VAR NAME="isbn" --></i> <!-- /TMPL_IF -->
44                         <!-- TMPL_IF name="publishercode" --><br/>published by:<!-- TMPL_VAR NAME="publishercode" --> <!-- /TMPL_IF -->
45                         <!-- TMPL_IF name="publicationyear" --> in <i><!-- TMPL_VAR NAME="publicationyear" --></i> <!-- /TMPL_IF -->
46                         <!-- TMPL_IF name="place" --> at <i><!-- TMPL_VAR NAME="place" --></i> <!-- /TMPL_IF -->
47                         <!-- TMPL_IF name="note" --><p><i>(<!-- TMPL_VAR NAME="note" -->)</i></p> <!-- /TMPL_IF -->
48                     </p>
49                 </td>
50                 <td>
51                     <!-- TMPL_VAR NAME="surnamesuggestedby" --><!-- TMPL_IF name="firstnamesuggestedby" -->,<!-- /TMPL_IF --> <!-- TMPL_VAR NAME="firstnamesuggestedby" -->
52                 </td>
53                 <td>
54                     <!-- TMPL_VAR NAME="surnamemanagedby" --><!-- TMPL_IF name="firstnamemanagedby" -->,<!-- /TMPL_IF --> <!-- TMPL_VAR NAME="firstnamemanagedby" -->
55                 </td>
56                 <td>
57                     <!-- TMPL_IF name="biblionumber" -->
58                         <a href="neworderempty.pl?booksellerid=<!-- TMPL_VAR NAME="supplierid" -->&amp;basketno=<!-- TMPL_VAR NAME="basketno" -->&amp;suggestionid=<!-- TMPL_VAR NAME="suggestionid" -->&biblio=<!-- TMPL_VAR name="biblionumber" -->" class="button acquisition">Order</a>
59                     <!-- TMPL_ELSE -->
60                         <a href="neworderempty.pl?booksellerid=<!-- TMPL_VAR NAME="supplierid" -->&amp;basketno=<!-- TMPL_VAR NAME="basketno" -->&amp;suggestionid=<!-- TMPL_VAR NAME="suggestionid" -->" class="button acquisition">Order</a>
61                     <!-- /TMPL_IF -->
62                 </td>
63             </tr>
64         <!-- /TMPL_LOOP -->
65     </table>
66     </form>
67 </div>
68 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->