removing a lot of useless files in misc
[koha.git] / koha-tmpl / intranet-tmpl / prog / fr / tools / itemslost.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Outils &rsaquo; Documents perdus</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4
5 <!-- TMPL_INCLUDE NAME="menus.inc" -->
6 <!-- TMPL_INCLUDE NAME="menu-tools.inc" -->
7
8 <h1>Exemplaires perdus</h1>
9
10 <b>
11     <!-- TMPL_IF NAME="total" -->
12         <!-- TMPL_VAR NAME="total" --> document(s) perdu(s) trouvé(s).
13     <!-- TMPL_ELSE-->
14         Pas d'exemplaire(s) perdu(s)...
15     <!-- /TMPL_IF -->
16 </b>
17 <br />
18 <br />
19 <form name="f" action="/cgi-bin/koha/tools/itemslost.pl" method="post">
20     <label for="orderbyfilter">Trier les résultats par</label>
21     <select id="orderbyfilter" name="orderbyfilter">
22         <option value=""> --- </option>
23         <option value="homebranch">Site</option>
24         <option value="itemtype">Types de document</option>
25         <option value="barcode">Code à barres</option>
26         <option value="price">prix</option>
27     </select>
28     <input type="submit" value="OK" />
29     <input type="hidden" name="get_items" value="1" />
30     <table>
31     <tr>
32         <th>
33             Code à barres
34         </th>
35         <th>
36             Vu pour la dernière fois
37         </th>
38         <th>
39             Prix
40         </th>
41         <th>
42             Site
43         </th>
44         <th>
45             Type de document
46         </th>
47         <th>
48             Site de localisation
49         </th>
50         <th>
51             Localisation
52         </th>
53     </tr>
54     <tr>
55         <td>
56             <input type="text" name="barcodefilter" size="6"/>
57         </td>
58         <td>
59             <!-- datelastseen -->
60         </td>
61         <td>
62             <!-- price -->
63         </td>
64         <td>
65             <select name="branchfilter">
66                 <option value="">Tous</option>
67             <!-- TMPL_LOOP name="branchloop" -->
68                 <option value="<!-- TMPL_VAR name="value" -->" <!-- TMPL_IF name="selected" -->selected<!-- /TMPL_IF -->><!-- TMPL_VAR name="branchname" --></option>
69             <!-- /TMPL_LOOP -->
70             </select>
71         </td>
72         <td>
73             <select name="itemtypesfilter">
74                 <option value="">Tous</option>
75                 <!-- TMPL_LOOP name="itemtypeloop" -->
76                 <option value="<!-- TMPL_VAR name="value" -->" <!-- TMPL_IF name="selected" -->selected<!-- /TMPL_IF -->><!-- TMPL_VAR name="description" --></option>
77                 <!-- /TMPL_LOOP -->
78             </select>
79         </td>
80         <td>
81             <!-- holdingbranch -->
82         </td>
83         <td>
84             <!-- location -->
85         </td>
86     </tr>
87      <!-- TMPL_LOOP NAME="itemsloop"-->
88         <tr>
89             <td>
90                 <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber"-->" title="<!-- TMPL_VAR NAME="itemnotes"-->">
91                     <!-- TMPL_VAR NAME="barcode"-->
92                 </a>
93             </td>
94             <td>
95                 <!-- TMPL_VAR NAME="datelastseen"-->
96             </td>
97             <td>
98                 <!-- TMPL_VAR NAME="price" -->
99             </td>
100             <td>
101                 <!-- TMPL_VAR NAME="homebranch" -->
102             </td>
103             <td>
104                 <!-- TMPL_VAR NAME="itemtype" -->
105             </td>
106             <td>
107                 <!-- TMPL_VAR NAME="holdingbranch"-->
108             </td>
109             <td>
110                 <!-- TMPL_VAR NAME="location"-->
111             </td>
112         </tr>
113     <!-- /TMPL_LOOP -->
114     </table>
115 </form>
116
117 <script type="text/javascript" language="JavaScript">
118 // <![CDATA[
119     
120      // ]]>
121 </script>
122
123 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->