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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/tools-home.tt (-2 / +2 lines)
Lines 79-85 Link Here
79
79
80
<div class="col-sm-4 col-sm-push-4">
80
<div class="col-sm-4 col-sm-push-4">
81
[% IF ( CAN_user_tools_edit_calendar || CAN_user_tools_manage_csv_profiles || CAN_user_tools_view_system_logs || CAN_user_tools_edit_news
81
[% IF ( CAN_user_tools_edit_calendar || CAN_user_tools_manage_csv_profiles || CAN_user_tools_view_system_logs || CAN_user_tools_edit_news
82
  || CAN_user_tools_schedule_tasks || CAN_user_tools_edit_quotes || ( UseKohaPlugins && CAN_user_plugins_tool )
82
  || CAN_user_tools_schedule_tasks || CAN_user_tools_edit_quotes || ( Koha.Preference('UseKohaPlugins') && CAN_user_plugins_tool )
83
  || CAN_user_tools_upload_general_files || CAN_user_tools_access_files ) %]
83
  || CAN_user_tools_upload_general_files || CAN_user_tools_access_files ) %]
84
<h3>Additional tools</h3>
84
<h3>Additional tools</h3>
85
[% END %]
85
[% END %]
Lines 119-125 Link Here
119
    <dd>Create and edit digital signs for the OPAC</dd>
119
    <dd>Create and edit digital signs for the OPAC</dd>
120
    [% END %]
120
    [% END %]
121
121
122
    [% IF ( UseKohaPlugins && CAN_user_plugins_tool ) %]
122
    [% IF ( Koha.Preference('UseKohaPlugins') && CAN_user_plugins_tool ) %]
123
    <dt><a href="/cgi-bin/koha/plugins/plugins-home.pl?method=tool">Tool plugins</a></dt>
123
    <dt><a href="/cgi-bin/koha/plugins/plugins-home.pl?method=tool">Tool plugins</a></dt>
124
    <dd>Use tool plugins</dd>
124
    <dd>Use tool plugins</dd>
125
    [% END %]
125
    [% END %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-signs.tt (-7 / +7 lines)
Lines 2-7 Link Here
2
[% USE KohaDates %]
2
[% USE KohaDates %]
3
[% USE Branches %]
3
[% USE Branches %]
4
[% USE JSON.Escape %]
4
[% USE JSON.Escape %]
5
[% USE Asset %]
5
6
6
[%- BLOCK item_status -%]
7
[%- BLOCK item_status -%]
7
    [%- SET itemavailable = 1 -%]
8
    [%- SET itemavailable = 1 -%]
Lines 64-73 Link Here
64
      <style type="text/css">
65
      <style type="text/css">
65
        [% Koha.Preference( 'OPACDigitalSignsCSS' ) %]
66
        [% Koha.Preference( 'OPACDigitalSignsCSS' ) %]
66
      </style>
67
      </style>
67
      <link rel="stylesheet" href="[% interface %]/lib/jquery/mobile/jquery.mobile.structure.min.css" />
68
      [% Asset.css("lib/jquery/mobile/jquery.mobile.structure.min.css") %]
68
    [%- ELSE -%]
69
    [%- ELSE -%]
69
      <link rel="stylesheet" href="[% interface %]/bootstrap/css/signs.css" />
70
      [% Asset.css("css/signs.css") %]
70
      <link rel="stylesheet" href="[% interface %]/lib/jquery/mobile/jquery.mobile.min.css" />
71
      [% Asset.css("lib/jquery/mobile/jquery.mobile.min.css") %]
71
    [%- END -%]
72
    [%- END -%]
72
[% END # BLOCK cssinclude %]
73
[% END # BLOCK cssinclude %]
73
[% INCLUDE 'doc-head-close.inc' %]
74
[% INCLUDE 'doc-head-close.inc' %]
Lines 436-442 Link Here
436
                }
437
                }
437
                $carousel_container.append($carousel);
438
                $carousel_container.append($carousel);
438
439
439
                /* initilize carousel on pagecreate */
440
                /* initialize carousel on pagecreate */
440
                $page.on("pagecreate", function(){
441
                $page.on("pagecreate", function(){
441
                        var carousel = new Carousel($carousel);
442
                        var carousel = new Carousel($carousel);
442
                        $page.data('carousel', carousel);
443
                        $page.data('carousel', carousel);
Lines 459-465 Link Here
459
                    var item = cover.record.items[i];
460
                    var item = cover.record.items[i];
460
461
461
                    if(item.type) {
462
                    if(item.type) {
462
                        $li.append($('<img src="/opac-tmpl/lib/famfamfam/'+item.type+'.png" class="ui-li-icon"/>'));
463
                        $li.append($('<img src="/[% interface %]/lib/famfamfam/'+item.type+'.png" class="ui-li-icon"/>'));
463
                    }
464
                    }
464
                    var location = item.location_description ? item.location_description + _(" in ") + item.home_branch: item.home_branch;
465
                    var location = item.location_description ? item.location_description + _(" in ") + item.home_branch: item.home_branch;
465
                    var item_info = item.status + _(" at ") + location;
466
                    var item_info = item.status + _(" at ") + location;
Lines 557-563 Link Here
557
    //]]>
558
    //]]>
558
    </script>
559
    </script>
559
    [% END # IF ( sign ) %]
560
    [% END # IF ( sign ) %]
560
    <script src="/opac-tmpl/lib/jquery/mobile/jquery.mobile.min.js"></script>
561
    [% Asset.js("lib/jquery/mobile/jquery.mobile.min.js") %]
561
[% END # BLOCK jsinclude %]
562
[% END # BLOCK jsinclude %]
562
563
563
</body>
564
</body>
564
- 

Return to bug 8628