From 68c13f4aa20982d9c71d8f4010f71d56a729edc4 Mon Sep 17 00:00:00 2001 From: Jason Etheridge Date: Mon, 4 Jan 2016 15:51:14 -0500 Subject: [PATCH] webstaff: rework Local Administration maintain links and labels as a data structure Signed-off-by: Jason Etheridge Signed-off-by: Galen Charlton Signed-off-by: Kathy Lussier --- .../templates/staff/admin/local/t_splash.tt2 | 179 ++++-------------- 1 file changed, 35 insertions(+), 144 deletions(-) diff --git a/Open-ILS/src/templates/staff/admin/local/t_splash.tt2 b/Open-ILS/src/templates/staff/admin/local/t_splash.tt2 index c55235fe9b..8dcb28fa6e 100644 --- a/Open-ILS/src/templates/staff/admin/local/t_splash.tt2 +++ b/Open-ILS/src/templates/staff/admin/local/t_splash.tt2 @@ -7,156 +7,47 @@
+[% + interfaces = [ + [ l('Address Alerts'), "./admin/local/actor/address_alert" ] + ,[ l('Age Overdue Circs to Lost'), "./admin/local/circ/age_to_lost" ] + ,[ l('Auto-Print Settings'), "./admin/local/config/auto_print" ] + ,[ l('Barcode Completion'), "./admin/local/config/barcode_completion" ] + ,[ l('Cash Reports'), "./admin/local/money/cash_reports" ] + ,[ l('Circ Limit Sets'), "./admin/local/config/circ_limit_set" ] + ,[ l('Circulation Policies'), "./admin/local/config/circ_matrix_matchpoint" ] + ,[ l('Closed Dates Editor'), "./admin/local/actor/closed_dates" ] + ,[ l('Copy Location Groups'), "./admin/local/asset/copy_location_group" ] + ,[ l('Copy Location Order'), "./admin/local/asset/copy_location_order" ] + ,[ l('Copy Locations Editor'), "./admin/local/asset/copy_locations" ] + ,[ l('Copy Template Editor'), "./admin/local/asset/copy_template" ] + ,[ l('Field Documentation'), "./admin/local/config/idl_field_doc" ] + ,[ l('Group Penalty Thresholds'), "./admin/local/permission/grp_penalty_threshold" ] + ,[ l('Hold Policies'), "./admin/local/config/hold_matrix_matchpoint" ] + ,[ l('Library Settings Editor'), "./admin/local/asset/org_unit_settings" ] + ,[ l('Non-Cataloged Types Editor'), "./admin/local/config/non_cat_types" ] + ,[ l('Notifications / Action Triggers'), "./admin/local/action_trigger/event_definition" ] + ,[ l('Patrons with Negative Balances'), "./admin/local/circ/neg_balance_users" ] + ,[ l('Search Filter Groups'), "./admin/local/actor/search_filter_group" ] + ,[ l('Standing Penalties'), "./admin/local/config/standing_penalty" ] + ,[ l('Statistical Categories Editor'), "./admin/local/asset/stat_cat_editor" ] + ]; + + USE table(interfaces, rows=9); +%] + +[% FOREACH row = table.rows %]
+ [% FOREACH item = row %][% IF item.1 %] - - -
-
- - - -
-
- - - -
-
- - - -
-
- - -
-
- - -
-
- - -
-
- - -
-
- - + [% END %][% END %]
+[% END %]
-- 2.43.2