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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-downloadshelf.tt (-3 / +3 lines)
Lines 1-7 Link Here
1
[% USE Koha %]
1
[% USE Koha %]
2
[% IF ( fullpage ) %]
2
[% IF ( fullpage ) %]
3
    [% INCLUDE 'doc-head-open.inc' %]
3
    [% INCLUDE 'doc-head-open.inc' %]
4
    <title>[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Download list [% shelf.shelfname %]</title>[% INCLUDE 'doc-head-close.inc' %]
4
    <title>[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog &rsaquo; Download list [% shelf.shelfname | html %]</title>[% INCLUDE 'doc-head-close.inc' %]
5
    [% BLOCK cssinclude %][% END %]
5
    [% BLOCK cssinclude %][% END %]
6
    </head>
6
    </head>
7
    [% INCLUDE 'bodytag.inc' bodyid='opac-downloadlist' %]
7
    [% INCLUDE 'bodytag.inc' bodyid='opac-downloadlist' %]
Lines 20-26 Link Here
20
                    [% END %]
20
                    [% END %]
21
                    <span class="divider">&rsaquo;</span>
21
                    <span class="divider">&rsaquo;</span>
22
                </li>
22
                </li>
23
                <li>Download list <i>[% shelf.shelfname %]</i></li>
23
                <li>Download list <i>[% shelf.shelfname | html %]</i></li>
24
            </ul>
24
            </ul>
25
            <div class="container-fluid">
25
            <div class="container-fluid">
26
                <div class="row-fluid">
26
                <div class="row-fluid">
Lines 47-53 Link Here
47
                                    <p>Your download should begin automatically.</p>
47
                                    <p>Your download should begin automatically.</p>
48
                                </div>
48
                                </div>
49
                            [% ELSE %]
49
                            [% ELSE %]
50
                                <h1>Download list <i>[% shelf.shelfname %]</i></h1>
50
                                <h1>Download list <i>[% shelf.shelfname | html %]</i></h1>
51
                                <form method="post" action="/cgi-bin/koha/opac-downloadshelf.pl">
51
                                <form method="post" action="/cgi-bin/koha/opac-downloadshelf.pl">
52
                                    <fieldset>
52
                                    <fieldset>
53
                                        <select name="format" id="dlformat" required="required">
53
                                        <select name="format" id="dlformat" required="required">
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-results-grouped.tt (-1 / +1 lines)
Lines 288-294 $(document).ready(function(){ Link Here
288
    });
288
    });
289
    $("span.clearall").html("<a id=\"CheckNone\" href=\"#\">Clear all</a>");
289
    $("span.clearall").html("<a id=\"CheckNone\" href=\"#\">Clear all</a>");
290
    $("span.checkall").html("<a id=\"CheckAll\" href=\"#\">Select all</a>");
290
    $("span.checkall").html("<a id=\"CheckAll\" href=\"#\">Select all</a>");
291
    $("span.addto").html("<label for=\"addto\">Add to: </label><select name=\"addto\" id=\"addto\"><option value=\"\"></option>[% IF Koha.Preference( 'opacbookbag' ) == 1 %]<option value=\"addtocart\">Cart</option>[% END %][% IF Koha.Preference( 'virtualshelves' ) == 1 %][% IF ( loggedinusername ) %]<optgroup label=\"Lists:\">[% IF ( barshelves ) %][% FOREACH barshelvesloo IN barshelvesloop %][% IF ( category == 1 ) %]<option id=\"s[% barshelvesloo.shelfnumber %]\" value=\"addtolist\">[% barshelvesloo.shelfname %]</option>[% END %][% END %][% END %]<option value=\"newlist\">[ New list ]</option></optgroup>[% ELSE %]<option value=\"newlist\">List</option>[% END %][% END %]</select> <input type=\"submit\" class=\"submit\" value=\"Save\" />");
291
    $("span.addto").html("<label for=\"addto\">Add to: </label><select name=\"addto\" id=\"addto\"><option value=\"\"></option>[% IF Koha.Preference( 'opacbookbag' ) == 1 %]<option value=\"addtocart\">Cart</option>[% END %][% IF Koha.Preference( 'virtualshelves' ) == 1 %][% IF ( loggedinusername ) %]<optgroup label=\"Lists:\">[% IF ( barshelves ) %][% FOREACH barshelvesloo IN barshelvesloop %][% IF ( category == 1 ) %]<option id=\"s[% barshelvesloo.shelfnumber %]\" value=\"addtolist\">[% barshelvesloo.shelfname | html %]</option>[% END %][% END %][% END %]<option value=\"newlist\">[ New list ]</option></optgroup>[% ELSE %]<option value=\"newlist\">List</option>[% END %][% END %]</select> <input type=\"submit\" class=\"submit\" value=\"Save\" />");
292
    $("#addto").change(function(){
292
    $("#addto").change(function(){
293
        cartList();
293
        cartList();
294
    });
294
    });
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-shelves-rss.tt (-2 / +1 lines)
Lines 3-9 Link Here
3
<rss version="2.0">
3
<rss version="2.0">
4
4
5
<channel>
5
<channel>
6
 <title>[% shelf.shelfname %]</title>
6
 <title>[% shelf.shelfname | html %]</title>
7
 <link>[% OPACBaseURL %]/cgi-bin/koha/opac-shelves.pl?rss=1&amp;viewshelf=[% shelf.shelfnumber %]</link>
7
 <link>[% OPACBaseURL %]/cgi-bin/koha/opac-shelves.pl?rss=1&amp;viewshelf=[% shelf.shelfnumber %]</link>
8
 <description>RSS feed for public list [% shelf.shelfname | html %]</description>
8
 <description>RSS feed for public list [% shelf.shelfname | html %]</description>
9
9
10
- 

Return to bug 16599