Bug 13352: On editing, prices should not be formatted
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / admin / aqbudgetperiods.tt
1 [% USE KohaDates %]
2 [% USE Price %]
3
4 [%- BLOCK action_menu %]
5     <div class="dropdown">
6         <a class="btn btn-mini dropdown-toggle" id="budgetmenu_[% block_budget_id %]" role="button" data-toggle="dropdown" href="#">
7            Actions <b class="caret"></b>
8         </a>
9         <ul class="dropdown-menu pull-right" role="menu" aria-labelledby="budgetmenu_[% block_budget_id %]">
10               <li>
11                   <a href="[% script_name %]?op=add_form&amp;budget_period_id=[% block_budget_id |html %]"><i class="icon-pencil"></i> Edit</a>
12               </li>
13               <li>
14                   <a href="[% script_name %]?op=delete_confirm&amp;budget_period_id=[% block_budget_id %]"><i class="icon-remove"></i> Delete</a>
15               </li>
16               <li>
17                   <a href="[% script_name %]?op=duplicate_form&amp;budget_period_id=[% block_budget_id %]"><i class="icon-copy"></i> Duplicate</a>
18               </li>
19               <li>
20                   <a href="[% script_name %]?op=close_form&amp;budget_period_id=[% block_budget_id %]"><i class="icon-remove-sign"></i> Close</a>
21               </li>
22               <li>
23                   <a href="/cgi-bin/koha/admin/aqbudgets.pl?op=add_form&amp;budget_period_id=[% block_budget_id %]"><i class="icon-plus"></i> Add fund</a>
24               </li>
25         </ul>
26     </div>
27 [% END -%]
28
29 [% INCLUDE 'doc-head-open.inc' %]
30 <link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
31 [% INCLUDE 'doc-head-close.inc' %]
32 [% INCLUDE 'calendar.inc' %]
33 [% INCLUDE 'datatables.inc' %]
34 [% IF close_form %]
35     <link href="[% interface %]/lib/jquery/plugins/treetable/stylesheets/jquery.treetable.css" rel="stylesheet" type="text/css" />
36     <script type="text/javascript" src="[% interface %]/lib/jquery/plugins/treetable/jquery.treetable.js"></script>
37 [% END %]
38 <script type="text/javascript" src="[% themelang %]/js/acq.js"></script>
39 <script type="text/javascript">
40 // #################################################################################
41 // Javascript
42 // #################################################################################
43     function CheckDuplicateForm(f){
44             var ok=1;
45             var _alertString="";
46             var alertString="";
47             if(!(isNotNull(f.budget_period_startdate,1))){
48               _alertString += "\n- " + _("Start date missing");
49             }
50             if (!(isNotNull(f.budget_period_enddate,1))){
51               _alertString += "\n- " + _("End date missing");
52             }
53             if( f.budget_period_startdate > f.budget_period_enddate ) {
54               _alertString += "\n- " + _("Start date must be before end date");
55             }
56             if (!(isNotNull(f.budget_period_description,1))){
57               _alertString += "\n- " + _("Budget description missing");
58             }
59
60             if(_alertString.length==0){
61               f.submit();
62             } else {
63               alertString += _("Form not submitted because of the following problem(s)");
64               alertString += "\n-----------------------------------------\n";
65               alertString += _alertString;
66               alert(alertString);
67             }
68     }
69     function Check(f) {
70             var ok=1;
71             var _alertString="";
72             var alertString2;
73
74             if (!(isNotNull(f.budget_period_startdate,1))) {
75                     _alertString += "\n- " + _("Start date missing");
76             }
77
78             if (!(isNotNull(f.budget_period_enddate,1))) {
79                     _alertString += "\n- " + _("End date missing");
80             }
81
82             if ( f.budget_period_startdate >   f.budget_period_enddate )  {
83                     _alertString += "\n- " + _("Start date must be before end date");
84             }
85
86             if (!(isNotNull(f.budget_period_description,1))) {
87                     _alertString += "\n- " + _("Description missing");
88             }
89
90             if (!(isNum(f.budget_period_total))) {
91                     _alertString += "\n- " + _("Amount must be a valid number, or empty");
92             }
93
94 /*
95                         checkBudgetTotal(f) {
96                         }
97 */
98
99             if (_alertString.length==0) {
100                     f.submit();
101             } else {
102                     alertString2  = _("Form not submitted because of the following problem(s)");
103                     alertString2 += "\n------------------------------------------------------------------------------------\n";
104                     alertString2 += _alertString;
105                     alert(alertString2);
106             }
107     }
108
109     $(document).ready(function() {
110         var tabs = $('#budgetsTabs').tabs();
111         [% IF ( tab ) %]
112             tabs.tabs("option", "active", [% tab %]);
113         [% END %]
114         $("#activeperiodst,#inactiveperiodst").dataTable($.extend(true, {}, dataTablesDefaults, {
115             "sDom": 't',
116             "aaSorting": [],
117             "aoColumnDefs": [
118                 { "aTargets": [ -1 ], "bSortable": false, "bSearchable": false },
119                 { "sType": "title-string", "aTargets" : [ "title-string" ] }
120             ],
121             "bPaginate": false,
122             'bAutoWidth': false
123         } ) );
124
125         [% IF close_form %]
126           $("#budgeth").dataTable($.extend(true, {}, dataTablesDefaults, {
127             sDom: "t"
128           }));
129           $("#move_form").submit(function(){
130             var budget_from = "[% budget_period_description %]";
131             var budget_to = $("#to_budget_period_id").find("option:selected").html();
132             var alert_message = _("You have chosen to move all unreceived orders from '%s' to '%s'.").format(budget_from, budget_to);
133             alert_message += _("\nThis action cannot be reversed. Do you wish to continue?");
134             return confirm ( alert_message );
135           });
136         [% END %]
137         [% IF closed %]
138           var oTable = $("#closed_report").dataTable($.extend(true, {}, dataTablesDefaults, {
139             // The following is a c/p from aqbudgets.tt and is a candidate for refactoring.
140             "fnDrawCallback": function ( oSettings ) {
141                 if ( oSettings.aiDisplay.length == 0 )
142                 {
143                     return;
144                 }
145
146                 var nTrs = $('#closed_report tbody tr');
147                 var iColspan = nTrs[1].getElementsByTagName('td').length;
148                 var sLastGroup = "";
149                 for ( var i=0 ; i<nTrs.length ; i++ )
150                 {
151                     var iDisplayIndex = oSettings._iDisplayStart + i;
152                     var sGroup = oSettings.aoData[ oSettings.aiDisplay[iDisplayIndex] ]._aData[0];
153                     if ( sGroup != sLastGroup )
154                     {
155                         var nGroup = document.createElement( 'tr' );
156                         var nCell = document.createElement( 'td' );
157                         nCell.colSpan = iColspan;
158                         nCell.className = "group";
159                         nCell.innerHTML = sGroup;
160                         nGroup.appendChild( nCell );
161                         nTrs[i].parentNode.insertBefore( nGroup, nTrs[i] );
162                         sLastGroup = sGroup;
163                     }
164                 }
165             },
166             "aoColumnDefs": [
167                 { "bVisible": false, "aTargets": [ 0, 1 ] },
168                 { "bSortable": false, "aTargets": ["_all"] }
169             ],
170             'bSort': true,
171             'aaSortingFixed': [[ 1, 'asc' ]],
172             'bPaginate': false,
173             "bAutoWidth": false
174           }));
175         [% END %]
176     });
177 </script>
178
179 <title>
180     Koha &rsaquo; Administration &rsaquo; Budgets
181
182     [% IF ( add_form ) %]&rsaquo;
183         [% IF ( budget_period_id ) %]
184             Modify budget [% budget_period_description %]
185         [% ELSE %]
186             Add budget
187         [% END %]
188     [% END %]
189     [% IF ( duplicate_form ) %]&rsaquo; Duplicate budget[% END %]
190     [% IF ( delete_confirm ) %]&rsaquo;
191             Delete budget '[% budget_period_description %]'?
192     [% END %]
193     [% IF ( delete_confirmed ) %]&rsaquo;
194         Data deleted
195     [% END %]
196     [% IF close_form %]&rsaquo;
197       Close budget [% budget_period_description %]
198     [% END %]
199     [% IF closed %]&rsaquo;
200       Budget [% budget_period_description %] closed
201     [% END %]
202 </title>
203
204
205 </head>
206
207 <body id="admin_aqbudgetperiods" class="admin">
208
209 [% INCLUDE 'header.inc' %]
210 [% INCLUDE 'budgets-admin-search.inc' %]
211
212 <!-- ################################################################################# -->
213 <!-- BREADCRUMBS -->
214 <!-- ################################################################################# -->
215
216 <div id="breadcrumbs">
217     <a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo;
218     <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a> &rsaquo;
219
220     <!-- add or modify a budget period -->
221     <!-- ####################################### -->
222     [% IF ( add_form ) %]
223         <a href="/cgi-bin/koha/admin/aqbudgetperiods.pl">Budgets</a> &rsaquo;
224         [% IF ( budget_period_id ) %]
225             Modify budget <i>[% budget_period_description %]</i>
226
227         [% ELSE %]
228             Add budget
229         [% END %]
230     [% END %]
231
232     <!-- delete a budget period -->
233     <!-- ################################ -->
234     [% IF ( delete_confirm ) %]
235         <a href="/cgi-bin/koha/admin/aqbudgetperiods.pl">Budgets</a> &rsaquo;
236         [% IF ( total ) %]
237             Cannot delete budget '[% budget_period_description %]'
238         [% ELSE %]
239             Delete budget '[% budget_period_description %]'?
240         [% END %]
241     [% END %]
242     <!-- duplicate a budget -->
243     [% IF ( duplicate_form ) %]
244         <a href="/cgi-bin/koha/admin/aqbudgetperiods.pl">Budgets</a> &rsaquo; Duplicate budget
245     [% END %]
246
247     <!-- close a budget -->
248     [% IF close_form %]
249         <a href="/cgi-bin/koha/admin/aqbudgetperiods.pl">Budgets</a> &rsaquo;
250         Close budget <a href="/cgi-bin/koha/admin/aqbudgets.pl?budget_period_id=[% budget_period_id %]">[% budget_period_description %]</a>
251     [% END %]
252
253     <!-- budget closed -->
254     [% IF closed %]
255         <a href="/cgi-bin/koha/admin/aqbudgetperiods.pl">Budgets</a> &rsaquo;
256         Budget <a href="/cgi-bin/koha/admin/aqbudgets.pl?budget_period_id=[% budget_period_id %]">[% budget_period_description %]</a> closed
257     [% END %]
258     <!-- display budget periods list -->
259     <!-- ########################################## -->
260     [% IF ( else ) %]
261         Budgets administration
262     [% END %]
263 </div>
264
265 <div id="doc3" class="yui-t2">
266 <div id="bd">
267 <div id="yui-main">
268 <div class="yui-b">
269
270 [% UNLESS close_form OR closed%]
271   [% INCLUDE 'budgets-admin-toolbar.inc' %]
272 [% END %]
273
274 [% IF ( duplicate_form ) %]
275 <h3>Duplicate budget</h3>
276 <form action="/cgi-bin/koha/admin/aqbudgetperiods.pl" name="f" method="post">
277     <fieldset class="rows">
278     <input type="hidden" name="op" value="duplicate_budget" />
279     <input type="hidden" name="budget_period_id" value="[% budget_period_id %]" />
280
281     <ol>
282
283     <li>
284     <label class="required" for="from">Start date: </label>
285     <input type="text" size="10" id="from" name="budget_period_startdate" value="[% budget_period_startdate | $KohaDates %]" class="datepickerfrom" />
286                                 <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
287     </li>
288     <li>
289
290     <label class="required" for="to">End date: </label>
291     <input type="text" size="10" id="to" name="budget_period_enddate" value="[% budget_period_enddate | $KohaDates %]" class="datepickerto" />
292                                 <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
293     </li>
294
295     <li>
296     <label class="required" for="budget_period_description">Description</label>
297     <input type="text" id="budget_period_description" name="budget_period_description" value="[% budgetperiod.budget_period_description %]" />
298     </li>
299
300     <li>
301       <label for="mark_as_inactive">Mark the original budget as inactive</label>
302       <input type="checkbox" id="mark_as_inactive" name="mark_original_budget_as_inactive" />
303     </li>
304
305     <li>
306       <label for="reset_all_budgets">Set all funds to zero</label>
307       <input type="checkbox" id="reset_all_budgets" name="reset_all_budgets" />
308     </li>
309
310     </ol>
311     </fieldset>
312
313     <fieldset class="action">
314         <input type="button" value="Save Changes"  onclick="CheckDuplicateForm(this.form)" /> <a class="cancel" href="/cgi-bin/koha/admin/aqbudgets.pl?budget_period_id=[% budget_period_id %]">Cancel</a>
315     </fieldset>
316
317 </form>
318
319 [% END %]
320
321 [% IF ( add_form ) %]
322     <!--  add or modify a budget period   -->
323
324     [% IF ( budget_period_id ) %]
325         <h3>Modify budget <i>[% budget_period_description %]</i></h3>
326     [% ELSE %]
327         <h3>Add budget</h3>
328         [% END %]
329 <form action="/cgi-bin/koha/admin/aqbudgetperiods.pl" name="f" method="post">
330     <fieldset class="rows">
331     <!-- ################################################################################# -->
332     <!-- display information about the budget period that must be added or modified -->
333     <!-- ################################################################################# -->
334     <input type="hidden" name="op" value="add_validate" />
335     <input type="hidden" name="budget_period_id" value="[% budget_period_id %]" />
336     <ol>
337     <li>
338     <label class="required" for="from">Start date: </label>
339     <input type="text" size="10" id="from" name="budget_period_startdate" value="[% budget_period_startdate | $KohaDates %]" class="datepickerfrom" />
340                                 <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
341     </li>
342     <li>
343
344     <label class="required" for="to">End date: </label>
345     <input type="text" size="10" id="to" name="budget_period_enddate" value="[% budget_period_enddate | $KohaDates %]" class="datepickerto" />
346                                 <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
347     </li>
348
349     <li>
350         <!-- DESCRIPTION -->
351         <!-- ############################## -->
352         <label class="required" for="budget_period_description">Description: </label>
353         <input type="text" id="budget_period_description" name="budget_period_description"
354         size="48" maxlength="80" value="[% budget_period_description %]" />
355     </li>
356
357     <li>
358         <!-- TOTAL -->
359         <!-- ############################## -->
360         <label for="budget_period_total">Total amount: </label>
361         <input type="text" id="budget_period_total" name="budget_period_total"
362         size="10" maxlength="80" value="[% budget_period_total | $Price on_editing => 1 %]" />
363     </li>
364
365     <li>
366         <!-- ACTIVE -->
367         <!-- ############################## -->
368         <label for="budget_period_active">Make budget active: </label>
369         [% IF ( budget_period_active ) %]<input type="checkbox" checked="checked" id="budget_period_active" name="budget_period_active" value="1" />[% ELSE %]  <input type="checkbox" id="budget_period_active" name="budget_period_active" value="1"/> [% END %]
370     </li>
371
372     <li>
373         <!-- LOCK  -->
374         <!-- ############################## -->
375         <label for="budget_period_locked">Lock budget: </label>
376         [% IF ( budget_period_locked ) %]<input type="checkbox" checked="checked" id="budget_period_locked" name="budget_period_locked" value="1" />[% ELSE %]  <input type="checkbox" id="budget_period_locked" name="budget_period_locked" value="1"/> [% END %]
377     </li>
378     </ol>
379     </fieldset>
380
381     <fieldset class="action">
382         <!-- "save changes" button -->
383         <!-- ###################################### -->
384         <input type="button" value="Save changes"  onclick="Check(this.form)"    />
385         <!--             <input type="submit" value="Save Changes"  />  -->
386         [% IF ( budget_period_id ) %]<a href="/cgi-bin/koha/admin/aqbudgets.pl?budget_period_id=[% budget_period_id %]" class="cancel">Cancel</a>[% END %]
387     </fieldset>
388
389 </form>
390
391 [% END %]
392
393 <!-- ####################################################################### -->
394 <!-- delete a budget period -->
395 <!-- ####################################################################### -->
396
397 [% IF ( delete_confirm ) %]
398     [% IF ( total ) %]
399         <div class="dialog message">
400         <h3>Cannot delete budget</h3>
401         <p><strong>This record is used [% total %] times</strong>
402         . Deletion is not possible.</p>
403     [% ELSE %]
404         <div class="dialog alert">
405         <h3>Delete budget '[% budget_period_description %]'?</h3>
406     [% END %]
407
408     <!-- ############################################################# -->
409     <!-- "delete" and "cancel" buttons    -->
410     <!-- ############################################################# -->
411
412     <form action="[% script_name %]" method="post">
413         <input type="hidden" name="op" value="delete_confirmed" />
414         <input type="hidden" name="budget_period_id" value="[% budget_period_id %]" />
415         <input type="submit" class="approve" value="Delete" />
416     </form>
417
418     <form action="[% script_name %]" method="post">
419         <input type="submit" class="deny" value="Cancel" />
420     </form>
421
422     </div>
423 [% END %]
424
425 [% IF close_form %]
426   [% IF budget_periods.size == 0 %]
427     You cannot move funds of this budget, there is no active budget.
428     Please create a new active budget and retry.
429     <a href="/cgi-bin/koha/admin/aqbudgetperiods.pl">Back</a>
430   [% ELSIF number_of_unreceived_orders == 0 %]
431     There are no unreceived orders for this budget.
432     <a href="/cgi-bin/koha/admin/aqbudgetperiods.pl">Back</a>
433   [% ELSE %]
434     <h3>The unreceived orders from the following funds will be moved</h3>
435       Fund list of budget <a href="/cgi-bin/koha/admin/aqbudgets.pl?budget_period_id=[% budget_period_id %]">[% budget_period_description %]</a>:
436     <table id="budgeth">
437       <thead>
438         <tr>
439             <th>Fund id</th>
440             <th>Fund code</th>
441             <th>Fund name</th>
442             <th>Unreceived orders</th>
443         </tr>
444       </thead>
445       <tbody>
446         [% FOREACH budget IN budgets_to_move %]
447           <tr>
448             <td>[% budget.budget_id %]</td>
449             <td>[% budget.budget_code_indent %]</td>
450             <td>[% budget.budget_name %]</td>
451             <td>[% budget.unreceived_orders.size %]</td>
452           </tr>
453         [% END %]
454       </tbody>
455     </table>
456     <form action="/cgi-bin/koha/admin/aqbudgetperiods.pl" name="f" method="post" id="move_form">
457       <fieldset class="rows">
458         <ol>
459           <li>
460             <label class="required" for="to_budget_period_id">Select a budget</label>
461             <select name="to_budget_period_id" id="to_budget_period_id" required="required">
462               <option value=""></option>
463               [% FOR budget_period IN budget_periods %]
464                 <option value="[% budget_period.budget_period_id %]">[% budget_period.budget_period_description %]</option>
465               [% END %]
466             </select>
467           </li>
468           <li>
469           <label for="move_remaining_unspent">Move remaining unspent funds</label>
470             <input type="checkbox" name="move_remaining_unspent" id="move_remaining_unspent" />
471           </li>
472         </ol>
473       </fieldset>
474       <fieldset class="action">
475           <input type="hidden" name="op" value="close_confirmed" />
476           <input type="hidden" name="budget_period_id" value="[% budget_period_id %]" />
477           <input type="submit" value="Move unreceived orders" />
478           <a class="cancel" href="/cgi-bin/koha/admin/aqbudgetperiods.pl">Cancel</a>
479       </fieldset>
480     </form>
481   [% END %]
482 [% ELSIF closed %]
483   <h3>Report after moving unreceived orders from budget [% from_budget_period.budget_period_description %] ([% from_budget_period.budget_period_startdate | $KohaDates %] - [% from_budget_period.budget_period_enddate | $KohaDates %]) to [% to_budget_period.budget_period_description %] ([% to_budget_period.budget_period_startdate | $KohaDates %] - [% to_budget_period.budget_period_enddate | $KohaDates%])</h3>
484
485   <table id="closed_report">
486     <thead>
487       <tr>
488         <td>Budget id</td>
489         <td>Basket</td>
490         <td>Ordernumber</td>
491         <td>Details</td>
492       </tr>
493     </thead>
494     <tbody>
495       [% FOR r IN report %]
496           [% IF r.moved %]
497             [% IF r.orders_moved.size > 0 %]
498               [% FOR order IN r.orders_moved %]
499                 <tr>
500                   <td>[% r.budget.budget_name %] (id=[% r.budget.budget_id %]) Amount=[% r.budget.budget_amount | $Price %][% IF r.unspent_moved %] ([% r.unspent_moved | $Price %] remaining has been moved)[% END %]</td>
501                   <td>[% order.basketname %]</td>
502                   <td>[% order.ordernumber %]</td>
503                   <td>Moved!</td>
504                 </tr>
505               [% END %]
506             [% ELSE %]
507               <tr>
508                 <td>[% r.budget.budget_name %] (id=[% r.budget.budget_id %])</td>
509                 <td></td>
510                 <td></td>
511                 <td>There were no unreceived orders for this fund.</td>
512               </tr>
513             [% END %]
514           [% ELSE %]
515             [% IF r.error == 'budget_code_not_exists' %]
516               <tr>
517                 <td>[% r.budget.budget_id %] [% r.budget.budget_amount | $Price %][% IF r.unspent_moved %] ([% r.unspent_moved | $Price %] remaining has been moved)[% END %]</td>
518                 <td></td>
519                 <td></td>
520                 <td>This fund code does not exist in the destination budget.</td>
521               </tr>
522             [% END %]
523           [% END %]
524         </tr>
525       [% END %]
526     </tbody>
527   </table>
528   <a class="cancel" href="/cgi-bin/koha/admin/aqbudgetperiods.pl">Back</a>
529 [% END %]
530
531 <!--  DEFAULT  display budget periods list -->
532 [% IF ( else ) %]
533   <h2>Budgets administration</h2>
534
535   [% INCLUDE 'budgets-active-currency.inc' %]
536
537   <div id="budgetsTabs" class="toptabs">
538     <ul>
539         <li><a href="#active">Active budgets</a></li>
540         <li><a href="#inactive">Inactive budgets</a></li>
541     </ul>
542
543     <div id="active">
544       [% IF ( period_active_loop ) %]
545         <table id="activeperiodst">
546           <thead>
547             <tr>
548               <th>Budget name</th>
549               <th class="title-string">Start date</th>
550               <th class="title-string">End date</th>
551               <th>Locked</th>
552               <th>Total</th>
553               <th>Actions</th>
554             </tr>
555           </thead>
556           <tbody>
557               [% FOREACH period_active IN period_active_loop %]
558                 <tr>
559                 <td><a href="/cgi-bin/koha/admin/aqbudgets.pl?budget_period_id=[% period_active.budget_period_id %]" title="View funds for [% period_active.budget_period_description %]">[% period_active.budget_period_description %]</a></td>
560                 <td><span title="[% period_active.budget_period_startdate %]">[% period_active.budget_period_startdate | $KohaDates %]</span></td>
561                 <td><span title="[% period_active.budget_period_enddate %]">[% period_active.budget_period_enddate | $KohaDates %]</span></td>
562                 <td>
563                   [% IF ( period_active.budget_period_locked ) %]
564                     <span style="color:green;">Locked</span>&nbsp;
565                   [% END %]
566                 </td>
567                 <td class="data">[% period_active.budget_period_total | $Price %]</td>
568                 <td>
569                     [% PROCESS action_menu block_budget_id=period_active.budget_period_id %]
570                 </td>
571                 </tr>
572               [% END %]
573           </tbody>
574         </table>
575       [% ELSE %]
576         No active budgets
577       [% END %]
578       <div class="paginationBar">[% active_pagination_bar %]</div>
579     </div>
580     <div id="inactive">
581       [% IF ( period_inactive_loop ) %]
582         <table id="inactiveperiodst">
583           <thead>
584               <tr>
585                   <th>Budget name</th>
586                   <th class="title-string">Start date</th>
587                   <th class="title-string">End date</th>
588                   <th>Locked</th>
589                   <th>Total</th>
590                   <th>Actions</th>
591               </tr>
592           </thead>
593           <tbody>
594               [% FOREACH period_loo IN period_inactive_loop %]
595                   <tr>
596                   <td><a href="/cgi-bin/koha/admin/aqbudgets.pl?budget_period_id=[% period_loo.budget_period_id %]" title="View funds for [% period_loo.budget_period_description %]">[% period_loo.budget_period_description %]</a></td>
597                   <td><span title="[% period_loo.budget_period_startdate %]">[% period_loo.budget_period_startdate | $KohaDates %]</span></td>
598                   <td><span title="[% period_loo.budget_period_enddate %]">[% period_loo.budget_period_enddate | $KohaDates %]</span></td>
599                   <td> [% IF ( period_loo.budget_period_locked ) %]<span style="color:green;">Locked</span>&nbsp;[% ELSE %][% END %] </td>
600                   <td class="data">[% period_loo.budget_period_total | $Price %]</td>
601                   <td>
602                         [% PROCESS action_menu block_budget_id=period_loo.budget_period_id %]
603                   </td>
604                   </tr>
605               [% END %]
606           </tbody>
607         </table>
608       [% ELSE %]
609         No inactive budgets
610       [% END %]
611       <div class="pages">[% inactive_pagination_bar %]</div>
612     </div>
613   </div>
614 [% END %]
615
616
617 </div>
618 </div>
619 <div class="yui-b">
620 [% INCLUDE 'acquisitions-menu.inc' %]
621 </div>
622 </div>
623
624 [% INCLUDE 'intranet-bottom.inc' %]