From 7f0895b9f3b9a1737096a4aa85a8ee8930786392 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Thu, 25 Apr 2013 09:34:17 -0400 Subject: [PATCH] Bug 10111 - Layout on basket summary page a bit inconsistent Content-Type: text/plain; charset="utf-8" Some details in the summary of basket information were not marked up consistently with others on the page. This patch makes the markup consistent for a consistent appearance. To test, view a basket in Acquisitions which is part of a basketgroup. Information should be displayed consistently for baksets in both open and closed basket groups. --- .../intranet-tmpl/prog/en/modules/acqui/basket.tt | 23 +++++++++----------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt index 463760f..96d2dee 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt @@ -204,13 +204,14 @@ [% IF ( closedate ) %]
-

- +

    +
  1. + Basket group: [% IF basketgroup.closed %] [% basketgroup.name %] (closed) [% ELSE %] -

    -

    +

  2. +
  3. - [% END %] -

    - - [% UNLESS basketgroup.closed %] -

    -

    - [% END %] + [% END %] +
  4. + [% IF ( basketgroupdeliveryplace ) %]
  5. Basket group delivery place: [% basketgroupdeliveryplace %]
  6. [% END %] + [% IF ( basketgroupbillingplace ) %]
  7. Basket group billing place: [% basketgroupbillingplace %]
  8. [% END %] +
- [% IF ( basketgroupdeliveryplace ) %]

Basket group delivery place: [% basketgroupdeliveryplace %]

[% END %] - [% IF ( basketgroupbillingplace ) %]

Basket group billing place: [% basketgroupbillingplace %]

[% END %]
[% END %] -- 1.7.9.5