Merge commit 'workbuffer.org-koha/translation' into to-push
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / acqui / acqui-home.tmpl
1 <!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
2 <title>Koha &rsaquo; Acquisitions</title>
3 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
4 </head>
5 <body>
6 <!-- TMPL_INCLUDE NAME="header.inc" -->
7 <!-- TMPL_INCLUDE NAME="acquisitions-search.inc" -->
8
9 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a> &rsaquo; </div>
10
11 <div id="doc3" class="yui-t2">
12
13 <div id="bd">
14     <div id="yui-main">
15     <div class="yui-b">
16
17 <!-- TMPL_INCLUDE NAME="acquisitions-toolbar.inc" -->
18
19 <h1>Acquisitions</h1>
20 <div class="yui-g">
21 <div class="yui-u first">
22 <div id="acqui_acqui_home_order">
23     <fieldset>
24         <legend>Manage orders</legend>
25     <!-- TMPL_IF name="nobudget" -->
26         <!-- TMPL_IF NAME="CAN_user_parameters" -->
27         <span class="problem">You must <a href="/cgi-bin/koha/admin/aqbudgetperiods.pl">define a budget</a> in Administration</span>
28         <!-- TMPL_ELSE -->
29         <span class="problem">Your administrator must define a budget in Administration</span>
30         <!-- /TMPL_IF -->
31         <form name="findsupplier" action="/cgi-bin/koha/acqui/booksellers.pl" method="post">
32             <p><label for="supplierpage">Vendor </label><input type="text" size="25" name="supplier" id="supplierpage" class="focus" />
33             <input type="submit" value="Search" />
34             </p>
35         </form>
36     <!-- TMPL_ELSE -->
37         <form name="findsupplier" action="/cgi-bin/koha/acqui/booksellers.pl" method="post">
38             <p><label for="supplierpage">Vendor: </label><input type="text" size="25" name="supplier" id="supplierpage" class="focus" />
39             <input type="submit" value="Search" />
40             </p>
41         </form>
42
43     <!-- /TMPL_IF -->
44     </fieldset>
45 </div>
46 <div id="acqui_acqui_home_suggestions">
47     <fieldset>
48     <legend>Pending suggestions</legend>
49         <!-- TMPL_IF name="suggestion" -->
50             <!--TMPL_VAR NAME="suggestion" --> suggestions waiting <a href="/cgi-bin/koha/suggestion/suggestion.pl">Manage suggestions</a>
51         <!-- TMPL_ELSE -->
52             <p>No suggestions waiting</p>
53         <!-- /TMPL_IF -->
54     </fieldset>
55 </div>
56 </div>
57
58 <div class="yui-u">
59
60         <!-- TMPL_IF name="loop_budget" -->
61
62             <h3>All available budgets<!-- TMPL_IF NAME="branchname" --> for <!-- TMPL_VAR NAME="branchname" --> branch<!-- /TMPL_IF  --></h3>
63
64     <!-- <a href="/cgi-bin/koha/admin/aqbookfund.pl" title="[ Manage funds ]">[ Manage ]</a>
65     <a href="/cgi-bin/koha/admin/budgetperiods.pl">manage budgets</a><br><br>  -->
66
67
68
69     <div id="BudgetsAndFunds">
70     <table id="accounts">
71         <thead>
72         <tr>
73             <th>Budget</th>
74             <th>Owner</th>
75             <th>Branch</th>
76             <th>Amount</th>
77             <th>Ordered</th>
78             <th>Spent</th>
79             <th>Avail</th>
80         </tr>
81         </thead>
82         <tfoot>
83         <tr>
84             <th>Total</th>
85             <th>&nbsp;</th>
86             <th>&nbsp;</th>
87             <th align="right" ><!-- TMPL_VAR name="total" --></th>
88             <th align="right" ><!-- TMPL_VAR name="totordered" --></th>
89             <th align="right" ><!-- TMPL_VAR name="totspent" --></th>
90             <th align="right" ><!-- TMPL_VAR name="totavail" --></th>
91         </tr>
92         </tfoot>
93         <tbody>
94         <!-- TMPL_LOOP name="loop_budget" -->
95             <!--TMPL_IF name="toggle"-->
96                 <tr class="highlight">
97             <!--TMPL_ELSE-->
98                 <tr>
99             <!--/TMPL_IF-->
100                 <td align="center"><!-- TMPL_VAR name="budget_code" --></td>
101                 <td align="center"><!-- TMPL_VAR name="budget_owner" --></td>
102                 <td align="center"><!-- TMPL_VAR name="budget_branchname" --></td>
103                 <td align="right" ><!-- TMPL_VAR name="budget_amount" --></td>
104                 <td align="right" ><!-- TMPL_VAR name="budget_ordered" --></td>
105                 <td align="right" ><!-- TMPL_VAR name="budget_spent" --></td>
106                 <td align="right" ><!-- TMPL_VAR name="budget_avail" --></td>
107             </tr>
108         <!-- /TMPL_LOOP -->
109         </tbody>
110     </table>
111     </div>
112     <!-- /TMPL_IF -->
113
114     <div id="acqui_acqui_home_currency">
115     <!-- TMPL_IF NAME="loop_currency" -->
116         <h3>Exchange rates</h3>
117         <form action="/cgi-bin/koha/acqui/currency.pl">
118         <table>
119             <tr>
120                 <th>Currency</th>
121                 <th>Symbol</th>
122                 <th>Rate</th>
123                 <th>&nbsp;</th>
124             </tr>
125             <!-- TMPL_LOOP name="loop_currency" -->
126                 <tr>
127                     <td align='center'><!-- TMPL_VAR name="currency" --></td>
128                     <td align='center'><!-- TMPL_VAR name="currency_symbol" --></td>
129                     <td>
130                             <input type="hidden" name="type" value="change" />
131                             <input type="text" size="10" value="<!-- TMPL_VAR name="rate" -->" />
132                     </td>
133
134
135
136
137
138                     <td><input type="submit" value="Save" /></td>
139                 </tr>
140             <!-- /TMPL_LOOP -->
141         </table>
142         </form>
143     <!-- TMPL_ELSE -->
144         <a href="/cgi-bin/koha/admin/currency.pl?op=add_form" class="button">
145         Add Currency
146         </a>
147     <!-- /TMPL_IF -->
148     </div>
149 </div>
150
151 </div>
152 </div>
153 </div>
154 <div class="yui-b">
155 <!-- TMPL_INCLUDE NAME="acquisitions-menu.inc" -->
156 </div>
157 </div>
158 <!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->