|
Lines 85-91
$(document).ready(function() {
Link Here
|
| 85 |
<table class="baskets"> |
85 |
<table class="baskets"> |
| 86 |
<thead> |
86 |
<thead> |
| 87 |
<tr> |
87 |
<tr> |
| 88 |
<th>Basket (#)</th> |
88 |
<th>N°</th> |
|
|
89 |
<th>Name</th> |
| 89 |
<th>Item count</th> |
90 |
<th>Item count</th> |
| 90 |
<th>Biblio count</th> |
91 |
<th>Biblio count</th> |
| 91 |
<th>Items expected</th> |
92 |
<th>Items expected</th> |
|
Lines 101-107
$(document).ready(function() {
Link Here
|
| 101 |
[% ELSE %] |
102 |
[% ELSE %] |
| 102 |
<tr> |
103 |
<tr> |
| 103 |
[% END %] |
104 |
[% END %] |
| 104 |
<td>[% basket.basketname %] (#[% basket.basketno %])</td> |
105 |
<td>[% basket.basketno %]</td> |
|
|
106 |
<td>[% basket.basketname %]</td> |
| 105 |
<td>[% basket.total_items %]</td> |
107 |
<td>[% basket.total_items %]</td> |
| 106 |
<td>[% basket.total_biblios %]</td> |
108 |
<td>[% basket.total_biblios %]</td> |
| 107 |
<td>[% basket.expected_items %]</td> |
109 |
<td>[% basket.expected_items %]</td> |
| 108 |
- |
|
|