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

(-)a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css (-1 / +1 lines)
Lines 2423-2429 a.btn:visited{ Link Here
2423
    list-style: none outside none;
2423
    list-style: none outside none;
2424
}
2424
}
2425
[class^="icon-"],[class*=" icon-"]{background-image:url("../../img/glyphicons-halflings-koha.png");}
2425
[class^="icon-"],[class*=" icon-"]{background-image:url("../../img/glyphicons-halflings-koha.png");}
2426
.icon-white,.nav-tabs>.active>a>[class^="icon-"],.nav-tabs>.active>a>[class*=" icon-"],.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"]{background-image:url("../../img/glyphicons-halflings-white.png");}
2426
.icon-white,.nav-tabs>.active>a>[class^="icon-"],.nav-tabs>.active>a>[class*=" icon-"],.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"]{background-image:url("../../img/glyphicons-halflings-white-koha.png");}
2427
a.disabled {
2427
a.disabled {
2428
    color : #999999;
2428
    color : #999999;
2429
}
2429
}
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt (-20 / +24 lines)
Lines 287-304 canned reports and writing custom SQL reports.</p> Link Here
287
                    <th>Public</th>
287
                    <th>Public</th>
288
                    [% IF (usecache) %] <th>Cache expiry (seconds)</th> [% END %]
288
                    [% IF (usecache) %] <th>Cache expiry (seconds)</th> [% END %]
289
                    <th>Saved results</th>
289
                    <th>Saved results</th>
290
                    <th>Saved SQL</th>
291
                    <th>&nbsp;</th>
292
                    [% IF ( CAN_user_reports_create_reports ) %]
293
                        <th>&nbsp;</th>
294
                    [% END %]
295
                </tr>
290
                </tr>
296
            </thead>
291
            </thead>
297
            <tbody>
292
            <tbody>
298
                [% FOREACH savedreport IN savedreports %]
293
                [% FOREACH savedreport IN savedreports %]
299
                    [% UNLESS ( loop.odd ) %]<tr class="odd">[% ELSE %]<tr>[% END %]
294
                    [% UNLESS ( loop.odd ) %]<tr class="odd">[% ELSE %]<tr>[% END %]
300
                        <td>[% savedreport.id %]</td>
295
                        <td>[% savedreport.id %]</td>
301
                        <td>[% savedreport.report_name %]</td>
296
                        <td>
297
                            <div class="dropdown">
298
                                <a class="dropdown-toggle" id="reportactions" role="button" data-toggle="dropdown" href="#">
299
                                    [% IF ( savedreport.report_name ) %]
300
                                        [% savedreport.report_name %]
301
                                    [% ELSE %]
302
                                        [ no name ]
303
                                    [% END %]
304
                                    <b class="caret"></b>
305
                                </a>
306
                                <ul class="dropdown-menu" role="menu" aria-labelledby="reportactions">
307
                                    <li><a href="/cgi-bin/koha/reports/guided_reports.pl?reports=[% savedreport.id %]&amp;phase=Show%20SQL"><i class="icon-search"></i> Show</a></li>
308
                                    [% IF ( CAN_user_reports_create_reports ) %]
309
                                        <li><a href="/cgi-bin/koha/reports/guided_reports.pl?reports=[% savedreport.id %]&amp;phase=Edit%20SQL"><i class="icon-pencil"></i> Edit</a></li>
310
                                        <li><a title="Duplicate this saved report" href="/cgi-bin/koha/reports/guided_reports.pl?phase=Create report from SQL&amp;sql=[% savedreport.savedsql |uri %]&amp;reportname=[% savedreport.report_name |uri %]&amp;notes=[% savedreport.notes |uri %]"><i class="icon-copy"></i> Duplicate</a></li>
311
                                    [% END %]
312
                                    <li><a href="/cgi-bin/koha/reports/guided_reports.pl?reports=[% savedreport.id %]&amp;phase=Run%20this%20report"><i class="icon-play"></i> Run</a></li>
313
                                    <li><a href="/cgi-bin/koha/tools/scheduler.pl?id=[% savedreport.id %]"><i class="icon-time"></i> Schedule</a></li>
314
                                    [% IF ( CAN_user_reports_create_reports ) %]
315
                                        <li><a class="confirmdelete" title="Delete this saved report" href="/cgi-bin/koha/reports/guided_reports.pl?reports=[% savedreport.id %]&amp;phase=Delete%20Saved"><i class="icon-remove"></i> Delete</a></li>
316
                                    [% END %]
317
                                </ul>
318
                            </div>
319
                        </td>
302
                        <td>[% savedreport.type %]</td>
320
                        <td>[% savedreport.type %]</td>
303
                        <td>[% savedreport.groupname %]</td>
321
                        <td>[% savedreport.groupname %]</td>
304
                        <td>[% savedreport.subgroupname %]</td>
322
                        <td>[% savedreport.subgroupname %]</td>
Lines 313-332 canned reports and writing custom SQL reports.</p> Link Here
313
                        [% IF (usecache) %] <td>[% savedreport.cache_expiry %]</td> [% END %]
331
                        [% IF (usecache) %] <td>[% savedreport.cache_expiry %]</td> [% END %]
314
                        <td>[% IF ( savedreport.date_run ) %]<a href="/cgi-bin/koha/reports/guided_reports.pl?phase=retrieve%20results&amp;id=[% savedreport.id %]">[% savedreport.date_run %]</a>[% END %]
332
                        <td>[% IF ( savedreport.date_run ) %]<a href="/cgi-bin/koha/reports/guided_reports.pl?phase=retrieve%20results&amp;id=[% savedreport.id %]">[% savedreport.date_run %]</a>[% END %]
315
                        </td>
333
                        </td>
316
                        <td>
317
                            <a href="/cgi-bin/koha/reports/guided_reports.pl?reports=[% savedreport.id %]&amp;phase=Show%20SQL">Show</a>
318
                            [% IF ( CAN_user_reports_create_reports ) %]
319
                                <a href="/cgi-bin/koha/reports/guided_reports.pl?reports=[% savedreport.id %]&amp;phase=Edit%20SQL">Edit</a>
320
                                <a title="Duplicate this saved report" href="/cgi-bin/koha/reports/guided_reports.pl?phase=Create report from SQL&amp;sql=[% savedreport.savedsql |uri %]&amp;reportname=[% savedreport.report_name |uri %]&amp;notes=[% savedreport.notes |uri %]">Duplicate</a>
321
                            [% END %]
322
                        </td>
323
                        <td>
324
                            <a href="/cgi-bin/koha/reports/guided_reports.pl?reports=[% savedreport.id %]&amp;phase=Run%20this%20report">Run</a>
325
                            <a href="/cgi-bin/koha/tools/scheduler.pl?id=[% savedreport.id %]">Schedule</a>
326
                        </td>
327
                        [% IF ( CAN_user_reports_create_reports ) %]
328
                            <td><a class="confirmdelete" title="Delete this saved report" href="/cgi-bin/koha/reports/guided_reports.pl?reports=[% savedreport.id %]&amp;phase=Delete%20Saved">Delete</a></td>
329
                        [% END %]
330
                    </tr>
334
                    </tr>
331
                [% END %]
335
                [% END %]
332
            </tbody>
336
            </tbody>

Return to bug 10615