@@ -, +, @@ --- koha-tmpl/intranet-tmpl/prog/en/includes/budget_planning.inc | 7 +++++++ koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqplan.tt | 5 +++-- 2 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 koha-tmpl/intranet-tmpl/prog/en/includes/budget_planning.inc --- a/koha-tmpl/intranet-tmpl/prog/en/includes/budget_planning.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/budget_planning.inc @@ -0,0 +1,7 @@ +[%- BLOCK planning -%] + [%- SWITCH plan -%] + [%- CASE 'MONTHS' -%]months + [%- CASE 'BRANCHES' -%]libraries + [%- CASE 'ITEMTYPES' -%]item types + [%- END -%] +[%- END -%] --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqplan.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqplan.tt @@ -3,7 +3,8 @@ [% USE Price %] [% SET footerjs = 1 %] [% INCLUDE 'doc-head-open.inc' %] -Koha › Administration › Budgets › Funds › Planning for [% budget_period_description | html %] by [% authcat | html %] +[% PROCESS 'budget_planning.inc' %] +Koha › Administration › Budgets › Funds › Planning for [% budget_period_description | html %] by [% PROCESS planning plan=authcat %] [% INCLUDE 'doc-head-close.inc' %] @@ -28,7 +29,7 @@ [% INCLUDE 'budgets-admin-toolbar.inc' %]
-

Planning for [% budget_period_description | html %] by [% authcat | html %]

+

Planning for [% budget_period_description | html %] by [% PROCESS planning plan=authcat %]

--