OPAC: Show Age Protection Alert rel_3_6_0_opac_new_age_protection
authorTerran McCanna <tmccanna@georgialibraries.org>
Mon, 23 Nov 2020 17:55:55 +0000 (12:55 -0500)
committerTerran McCanna <tmccanna@georgialibraries.org>
Mon, 23 Nov 2020 17:55:55 +0000 (12:55 -0500)
In Bootstrap OPAC, add a star with help popup next to items that are
marked for age protection and are newer than 6 months.

Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
Open-ILS/src/templates-bootstrap/opac/parts/record/copy_table.tt2

index 0432fff..2ec9f3c 100755 (executable)
@@ -54,6 +54,7 @@ IF has_copies or ctx.foreign_copies;
             [%- END %]
             <th scope='col'>[% l("Status") %]</th>
             <th scope='col'>[% l("Due Date") %]</th>
+            <th scope='col' style="vertical-align:top;">&nbsp;</th>
         </tr>
     </thead>
     <tbody>
@@ -224,6 +225,9 @@ END; # FOREACH bib
                 ELSE;
                     '-';
                 END %]</td>
+        <!-- PINES customization: Show alert if item is new -->
+        <td>[% IF copy_info.age_protect && copy_info.create_date < (date.now - 15552000); '<a href="#" title="" data-toggle="tooltip" data-original-title="This is a new item and may only be checked out locally."><i class="fas fa-star" style="color:orange;" aria-hidden="true"></i></a>'; END; %] 
+        </td>
         </tr>
 
         [% IF copy_info.notes; %]