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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tt (-1 / +1 lines)
Lines 79-85 Link Here
79
                [% ELSE %]
79
                [% ELSE %]
80
                    <h2 class="suppliername inactive">
80
                    <h2 class="suppliername inactive">
81
                [% END %]
81
                [% END %]
82
                        <a name="[% supplier.booksellerid | html %]" href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% supplier.booksellerid | uri %]">
82
                        <a id="vendor[% supplier.booksellerid | html %]" href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% supplier.booksellerid | uri %]">
83
                            [% IF (supplier.name) %]
83
                            [% IF (supplier.name) %]
84
                                [% supplier.name | html %]
84
                                [% supplier.name | html %]
85
                            [% ELSE %]
85
                            [% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/smart-rules.tt (-2 / +2 lines)
Lines 243-249 Link Here
243
                                                </td>
243
                                                </td>
244
                                                <td>
244
                                                <td>
245
                                                    [% IF note.defined && note != '' %]
245
                                                    [% IF note.defined && note != '' %]
246
                                                        <a name="viewnote" data-toggle="popover" title="Note" data-content="[% note | html %]" data-placement="top" data-trigger="hover">View note</a>
246
                                                        <a id="viewnote" data-toggle="popover" title="Note" data-content="[% note | html %]" data-placement="top" data-trigger="hover">View note</a>
247
                                                    [% ELSE %]<span>&nbsp;</span>[% END %]
247
                                                    [% ELSE %]<span>&nbsp;</span>[% END %]
248
                                                </td>
248
                                                </td>
249
                                                <td>
249
                                                <td>
Lines 1497-1503 Link Here
1497
                    var current_column = $("#edit_row td:eq("+i+")");
1497
                    var current_column = $("#edit_row td:eq("+i+")");
1498
                    if ( i == 3 ) {
1498
                    if ( i == 3 ) {
1499
                        // specific processing for the Note column
1499
                        // specific processing for the Note column
1500
                        var note = $(this).find("a[name='viewnote']").data("content");
1500
                        var note = $(this).find("a[id='viewnote']").data("content");
1501
                        $(current_column).find("input[type='text']").val(note);
1501
                        $(current_column).find("input[type='text']").val(note);
1502
                    } else if ( i == 9 ) {
1502
                    } else if ( i == 9 ) {
1503
                        // specific processing for Hard due date
1503
                        // specific processing for Hard due date
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/catalogue_out.tt (-1 / +1 lines)
Lines 81-87 Link Here
81
81
82
                        [% IF ( mainloo.looptables ) %]
82
                        [% IF ( mainloo.looptables ) %]
83
                            <div class="page-section">
83
                            <div class="page-section">
84
                                <h3><a name="summary" id="summary"></a>Summary</h3>
84
                                <h3><a id="summary"></a>Summary</h3>
85
                                <table id="summary_table">
85
                                <table id="summary_table">
86
                                    <tr>
86
                                    <tr>
87
                                        <th>Group</th>
87
                                        <th>Group</th>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-main.tt (-1 / +1 lines)
Lines 94-100 Link Here
94
                            [% IF ( news_item ) %]
94
                            [% IF ( news_item ) %]
95
                                [% koha_new.title | html %]
95
                                [% koha_new.title | html %]
96
                            [% ELSE %]
96
                            [% ELSE %]
97
                                <a name="newsitem[% koha_new.id | html %]" href="/cgi-bin/koha/opac-main.pl?news_id=[% koha_new.id | uri %]">[% koha_new.title | html %]</a>
97
                                <a id="newsitem[% koha_new.id | html %]" href="/cgi-bin/koha/opac-main.pl?news_id=[% koha_new.id | uri %]">[% koha_new.title | html %]</a>
98
                            [% END %]
98
                            [% END %]
99
                        </h4>
99
                        </h4>
100
                        <div class="newsbody">[% koha_new.content | $raw %]</div>
100
                        <div class="newsbody">[% koha_new.content | $raw %]</div>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-memberentry.tt (-2 / +1 lines)
Lines 978-984 Link Here
978
                                        <ol class="attributes_table">
978
                                        <ol class="attributes_table">
979
                                            [% FOREACH pa IN pa_class.items %]
979
                                            [% FOREACH pa IN pa_class.items %]
980
                                                [% FOREACH pa_value IN pa.values %]
980
                                                [% FOREACH pa_value IN pa.values %]
981
                                                    [% IF loop.first %]<a name="patron-attr-start-[% pa.type.code | html %]"></a>[% END %]
981
                                                    [% IF loop.first %]<a id="patron-attr-start-[% pa.type.code | html %]"></a>[% END %]
982
                                                    [% form_id = 'patron-attr-' _ Math.int( Math.rand(1000000) ) %]
982
                                                    [% form_id = 'patron-attr-' _ Math.int( Math.rand(1000000) ) %]
983
                                                    <li data-category_code="[% pa.type.category_code | html %]">
983
                                                    <li data-category_code="[% pa.type.category_code | html %]">
984
                                                        [% IF pa.type.mandatory && pa.type.opac_editable %]
984
                                                        [% IF pa.type.mandatory && pa.type.opac_editable %]
985
- 

Return to bug 34647