Koha/koha-tmpl/intranet-tmpl/prog/en/includes/patron_restrictions.inc
Martin Renvoize 060f528501
Bug 23681: (QA follow-up) Remove spacing and add question mark
This patch removes the superflous whitespace around the restriction
descriptions and also adds the missing question mark into the delete
question.

Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
2022-08-25 08:41:06 -03:00

10 lines
416 B
PHP

[%- BLOCK restriction_type_description -%]
[%- ddisplay = restriction.display_text -%]
[%- SWITCH ddisplay -%]
[%- CASE 'Manual' -%]<span>Manual</span>
[%- CASE 'Overdues' -%]<span>Overdues</span>
[%- CASE 'Suspension' -%]<span>Suspension</span>
[%- CASE 'Discharge' -%]<span>Discharge</span>
[%- CASE -%]<span>[% ddisplay | html %]</span>
[%- END -%]
[%- END -%]