From 608e9e2fdfb1590c39e1c5505ab75f8d7912d9b6 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 9 Oct 2014 10:54:28 -0400 Subject: [PATCH] Bug 13055 - Show budget name when editing it Content-Type: text/plain; charset="utf-8" This patch adds the budget name to the page heading when editing a budget. The patch also similarly corrects the page title during edit operations and fixes some inconsistency in the breadcrumbs. To test, edit an existing budget (Adminitration -> Budgets) and confirm that page title, breadcrumbs, and heading look correct. --- .../prog/en/modules/admin/aqbudgetperiods.tt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgetperiods.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgetperiods.tt index 51b8b8a..2b3461b 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgetperiods.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgetperiods.tt @@ -155,7 +155,7 @@ [% IF ( add_form ) %]› [% IF ( budget_period_id ) %] - Modify budget'[% budget_period_id %]' + Modify budget [% budget_period_description %] [% ELSE %] Add budget [% END %] @@ -194,9 +194,9 @@ [% IF ( add_form ) %] - Budget › + Budgets › [% IF ( budget_period_id ) %] - Modify budget [% budget_period_description %] + Modify budget [% budget_period_description %] [% ELSE %] Add budget @@ -296,7 +296,7 @@ [% IF ( budget_period_id ) %] -

Modify budget

+

Modify budget [% budget_period_description %]

[% ELSE %]

Add budget

[% END %] -- 1.7.9.5