View | Details | Raw Unified | Return to bug 34383
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/patron-attr-types.tt (-9 / +10 lines)
Lines 10-18 Link Here
10
<title>[% FILTER collapse %]
10
<title>[% FILTER collapse %]
11
    [% IF ( attribute_type_form ) %]
11
    [% IF ( attribute_type_form ) %]
12
        [% IF ( edit_attribute_type ) %]
12
        [% IF ( edit_attribute_type ) %]
13
            [% t("Modify patron attribute type") | html %] &rsaquo;
13
            [% tx("Modify patron attribute type '{code}'", { code = attribute_type.code }) | html %] &rsaquo;
14
        [% ELSE %]
14
        [% ELSE %]
15
            [% t("Add patron attribute type") | html %] &rsaquo;
15
            [% t("New patron attribute type") | html %] &rsaquo;
16
        [% END %]
16
        [% END %]
17
    [% END %]
17
    [% END %]
18
    [% IF ( delete_attribute_type_form ) %]
18
    [% IF ( delete_attribute_type_form ) %]
Lines 45-59 Link Here
45
        [% IF ( attribute_type_form ) %]
45
        [% IF ( attribute_type_form ) %]
46
            [% WRAPPER breadcrumb_item bc_active= 1 %]
46
            [% WRAPPER breadcrumb_item bc_active= 1 %]
47
                [% IF ( edit_attribute_type ) %]
47
                [% IF ( edit_attribute_type ) %]
48
                    <span>Modify patron attribute type</span>
48
                    [% tx("Modify patron attribute type '{code}'", { code = attribute_type.code }) | html %]
49
                [% ELSE %]
49
                [% ELSE %]
50
                    <span>Add patron attribute type</span>
50
                    <span>New patron attribute type</span>
51
                [% END %]
51
                [% END %]
52
            [% END %]
52
            [% END %]
53
53
54
        [% ELSIF ( delete_attribute_type_form ) %]
54
        [% ELSIF ( delete_attribute_type_form ) %]
55
            [% WRAPPER breadcrumb_item bc_active= 1 %]
55
            [% WRAPPER breadcrumb_item bc_active= 1 %]
56
                <span>Confirm deletion of patron attribute type '[% code | html %]'</span>
56
                [% tx("Confirm deletion of patron attribute type '{code}'", { code = code }) | html %]
57
            [% END %]
57
            [% END %]
58
58
59
        [% ELSE %]
59
        [% ELSE %]
Lines 75-83 Link Here
75
75
76
[% IF ( attribute_type_form ) %]
76
[% IF ( attribute_type_form ) %]
77
  [% IF ( edit_attribute_type ) %]
77
  [% IF ( edit_attribute_type ) %]
78
<h1>Modify patron attribute type</h1>
78
<h1>[% tx("Modify patron attribute type '{code}'", { code = attribute_type.code }) | html %]</h1>
79
  [% ELSE %]
79
  [% ELSE %]
80
<h1>Add patron attribute type</h1>
80
<h1>New patron attribute type</h1>
81
  [% END %]
81
  [% END %]
82
[% IF ( duplicate_code_error ) %]
82
[% IF ( duplicate_code_error ) %]
83
<div class="dialog message">Could not add patron attribute type &quot;[% duplicate_code_error | html %]&quot; 
83
<div class="dialog message">Could not add patron attribute type &quot;[% duplicate_code_error | html %]&quot; 
Lines 247-253 Link Here
247
247
248
[% IF ( delete_attribute_type_form ) %]
248
[% IF ( delete_attribute_type_form ) %]
249
    <div class="dialog alert">
249
    <div class="dialog alert">
250
        <h1>Confirm deletion of patron attribute type <span class="ex">'[% code | html %]' ([% description | html %])</span>?</h1>
250
        <h1>
251
            [% tx("Confirm deletion of patron attribute type '{code}' ({description})?", { code = code, description = description }) | html %]
252
        </h1>
251
        <form action="[% script_name | html %]" name="Aform" method="post">
253
        <form action="[% script_name | html %]" name="Aform" method="post">
252
            <input type="hidden" name="op" value="[% confirm_op | html %]" />
254
            <input type="hidden" name="op" value="[% confirm_op | html %]" />
253
            <input type="hidden" name="code" value="[% code | html %]" />
255
            <input type="hidden" name="code" value="[% code | html %]" />
254
- 

Return to bug 34383