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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-patron-consent.tt (-3 / +3 lines)
Lines 49-62 Link Here
49
                            <fieldset>
49
                            <fieldset>
50
                                <ul><li>
50
                                <ul><li>
51
                                    [% description = AuthorisedValues.GetByCode( 'PATRON_CONSENT', consent.type, 1 ) # TODO additional_contents.content %]
51
                                    [% description = AuthorisedValues.GetByCode( 'PATRON_CONSENT', consent.type, 1 ) # TODO additional_contents.content %]
52
                                    [% IF description %]
52
                                    [% IF description && description != consent.type # TODO Should GetByCode return code? %]
53
                                        [% description | $raw %]
53
                                        [% description | $raw %]
54
                                        <p>Do you agree?</p>
54
                                    [% ELSIF consent.type == 'GDPR_PROCESSING' # Backward compatbility ;) %]
55
                                    [% ELSIF consent.type == 'GDPR_PROCESSING' # Backward compatbility ;) %]
55
                                        <p>Please read the <a target="_blank" href="[% Koha.Preference('PrivacyPolicyURL') | url %]">privacy policy</a>.</p>
56
                                        <p>Please read the <a target="_blank" href="[% Koha.Preference('PrivacyPolicyURL') | url %]">privacy policy</a>.</p>
56
                                        <p>In order to keep you logged in, we need your consent to process personal data as specified in the EU General Data Protection Regulation of May 25, 2018. If you would not agree, we will need to <strong>remove</strong> your account within a reasonable time.</p>
57
                                        <p>In order to keep you logged in, we need your consent to process personal data as specified in the EU General Data Protection Regulation of May 25, 2018. If you would not agree, we will need to <strong>remove</strong> your account within a reasonable time.</p>
57
                                        <p>Do you agree with our processing of your personal data as outlined in the policy?</p>
58
                                        <p>Do you agree with our processing of your personal data as outlined in the policy?</p>
58
                                    [% ELSE # Fallback only %]
59
                                    [% ELSE # Fallback only %]
59
                                        <p>Description for [% consent.type | html %]. Do you agree?</p>
60
                                        <p>Description for [% consent.type | html %].</p><p>Do you agree?</p>
60
                                    [% END %]
61
                                    [% END %]
61
                                    <p>
62
                                    <p>
62
                                        <input type="radio" name="check_[% consent.type | html %]" value="1"> Yes<br>
63
                                        <input type="radio" name="check_[% consent.type | html %]" value="1"> Yes<br>
63
- 

Return to bug 31503