french templates
[koha.git] / koha-tmpl / intranet-tmpl / prog / fr / modules / authorities / authorities-home.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Autorités</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 </head>
5 <body>
6 <!-- TMPL_INCLUDE NAME="header.inc" -->
7
8 <script language="JavaScript" type="text/javascript">
9 function Help() {
10     newin=window.open("/cgi-bin/koha/help.pl","Koha Help",'width=600,height=600,toolbar=false,scrollbars=yes');
11 }
12
13 function addauthority() {
14     X = document.forms[0].authtype.value;
15     window.location="/cgi-bin/koha/authorities/authorities.pl?authtypecode="+X;
16 }
17 function searchauthority() {
18     X = document.forms[0].authtype2.value;
19     Y = document.forms[0].value.value;
20     window.location="/cgi-bin/koha/authorities/authorities-home.pl?op=do_search&type=intranet&authtypecode="+X+"&value="+Y+"&marclist=&and_or=and&excluding=&operator=contains";
21 }
22 </script>
23
24 <div id="doc3" class="yui-t2">
25    
26    <div id="bd">
27         <div id="yui-main">
28         <div class="yui-b"><div class="yui-g">
29
30 <fieldset id="authorities_authorities_home_search">
31   <legend>Recherche autorité</legend>
32
33   <form name="f" action="/cgi-bin/koha/authorities/authorities-home.pl" method="post">
34     <input type="hidden" name="op" value="do_search" />
35     <input type="hidden" name="type" value="intranet" />
36     <input type="hidden" name="nbstatements" value="<!-- TMPL_VAR NAME="nbstatements" -->" />
37
38     <p><label for="authtypecode">Rechercher</label>
39           <select id="authtypecode" name="authtypecode">
40 <!-- TMPL_LOOP NAME="authtypesloop" -->
41   <!-- TMPL_IF name="selected" -->
42             <option value="<!-- TMPL_VAR NAME="value" -->" selected="selected"><!-- TMPL_VAR NAME="authtypetext" --></option>
43   <!-- TMPL_ELSE -->
44             <option value="<!-- TMPL_VAR NAME="value" -->"><!-- TMPL_VAR NAME="authtypetext" --></option>
45   <!-- /TMPL_IF -->
46 <!-- /TMPL_LOOP -->
47           </select>
48           <label for="value_mainmainentry">Vedette principale (seulement $a)</label>
49           <input type="hidden" name="marclist" value="mainmainentry" />
50           <select name="operator">
51             <option value="contains">contient</option>
52             <option value="start">commence par</option>
53             <option value="is">est exactement</option>
54         </select>
55         <input id="value_mainmainentry" type="text" name="value" value="<!-- TMPL_VAR NAME="value" -->" />
56     </p>
57     <p>
58         <label for="value_mainentry">Vedette principale</label>
59         <input type="hidden" name="marclist" value="mainentry" />
60         <input type="hidden" name="and_or" value="and" />
61         <input type="hidden" name="excluding" value="" />
62         <select name="operator">
63             <option value="contains">contient</option>
64             <option value="start">commence par</option>
65             <option value="is">est exactement</option>
66         </select>
67         <input id="value_mainentry" type="text" name="value" value="<!-- TMPL_VAR NAME="value" -->" />
68       </p>
69     <p><label for="value_anywhere">Partout</label>
70           <input type="hidden" name="marclist" value="" />
71           <input type="hidden" name="and_or" value="and" />
72           <input type="hidden" name="excluding" value="" />
73           <select name="operator">
74             <option value="contains">contient</option>
75             <option value="start">commence par</option>
76             <option value="is">est exactement</option>
77           </select>
78           <input id="value_anywhere" type="text" name="value" value="<!-- TMPL_VAR NAME="value" -->" />
79     </p>
80
81     <div id="action">
82           <p><label>Trié par :</label><select name="orderby">
83          <option value="">Aucun</option>
84             <option value="HeadingAsc">Vedette croissant</option>
85             <option value="HeadingDsc">Vedette décroissant</option>
86           </select>
87       <input type="submit" value="Rechercher">
88       </p>
89     </div>
90   </form>
91 </fieldset>
92     
93 <fieldset id="authorities_authorities_home_add">
94   <legend>Ajouter autorité</legend>
95
96   <form name="f2" method="post" action="authorities.pl">
97     <p><label for="add_authtypecode">Type d'autorité</label>
98         <select id="add_authtypecode" name="authtypecode">
99 <!-- TMPL_LOOP name="authtypesloop" -->
100   <!-- TMPL_IF name="selected" -->
101         <option value="<!-- TMPL_VAR name="value" -->" selected="selected"><!-- TMPL_VAR name="authtypetext" --></option>
102   <!-- TMPL_ELSE -->
103         <option value="<!-- TMPL_VAR name="value" -->"><!-- TMPL_VAR name="authtypetext" --></option>
104   <!-- /TMPL_IF -->
105 <!-- /TMPL_LOOP -->
106         </select>
107     </p>
108     <div id="action">
109       <input type="submit" value="Ajouter" class="button">
110     </div>
111   </form>
112 </fieldset>
113
114 </div>
115 </div>
116 </div>
117
118 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->