|
Lines 44-56
Link Here
|
| 44 |
<div> |
44 |
<div> |
| 45 |
[% IF ( collectionsLoop ) %] |
45 |
[% IF ( collectionsLoop ) %] |
| 46 |
<table> |
46 |
<table> |
|
|
47 |
<thead> |
| 47 |
<tr> |
48 |
<tr> |
| 48 |
<th>Title</th> |
49 |
<th>Title</th> |
| 49 |
<th>Description</th> |
50 |
<th>Description</th> |
| 50 |
<th>Holding library</th> |
51 |
<th>Holding library</th> |
| 51 |
<td></td> |
52 |
<th> </th> |
| 52 |
<td></td> |
53 |
<th> </th> |
| 53 |
</tr> |
54 |
</tr> |
|
|
55 |
<thead> |
| 56 |
<tbody> |
| 54 |
[% FOREACH collectionsLoo IN collectionsLoop %] |
57 |
[% FOREACH collectionsLoo IN collectionsLoop %] |
| 55 |
<tr> |
58 |
<tr> |
| 56 |
<td>[% collectionsLoo.colTitle %]</td> |
59 |
<td>[% collectionsLoo.colTitle %]</td> |
|
Lines 60-65
Link Here
|
| 60 |
<td><a href="editCollections.pl?action=delete&colId=[% collectionsLoo.colId %]">Delete</a></td> |
63 |
<td><a href="editCollections.pl?action=delete&colId=[% collectionsLoo.colId %]">Delete</a></td> |
| 61 |
</tr> |
64 |
</tr> |
| 62 |
[% END %] |
65 |
[% END %] |
|
|
66 |
</tbody> |
| 63 |
</table> |
67 |
</table> |
| 64 |
[% ELSE %] |
68 |
[% ELSE %] |
| 65 |
There are no collections currently defined. |
69 |
There are no collections currently defined. |
|
Lines 99-105
Link Here
|
| 99 |
<label for="description">Description: </label> |
103 |
<label for="description">Description: </label> |
| 100 |
</td> |
104 |
</td> |
| 101 |
<td> |
105 |
<td> |
| 102 |
[% IF (editColDescription ) %]<input type="text" size="50" name="description" value="[ editColDescription %]" /> |
106 |
[% IF (editColDescription ) %]<input type="text" size="50" name="description" value="[% editColDescription %]" /> |
| 103 |
[% ELSE %]<input type="text" size="50" name="description" />[% END %] |
107 |
[% ELSE %]<input type="text" size="50" name="description" />[% END %] |
| 104 |
</td> |
108 |
</td> |
| 105 |
</tr> |
109 |
</tr> |
| 106 |
- |
|
|