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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt (-3 / +11 lines)
Lines 164-169 canned reports and writing custom SQL reports.</p> Link Here
164
                    <th class="title-string">Last edit</th>
164
                    <th class="title-string">Last edit</th>
165
                    <th class="title-string">Last run</th>
165
                    <th class="title-string">Last run</th>
166
                    <th>Public</th>
166
                    <th>Public</th>
167
                    <th>JSON URL</th>
167
                    [% IF (usecache) %] <th>Cache expiry (seconds)</th> [% END %]
168
                    [% IF (usecache) %] <th>Cache expiry (seconds)</th> [% END %]
168
                    <th>Saved results</th>
169
                    <th>Saved results</th>
169
                    [% IF has_obsolete_reports %]<th>Update</th>[% END %]
170
                    [% IF has_obsolete_reports %]<th>Update</th>[% END %]
Lines 194-204 canned reports and writing custom SQL reports.</p> Link Here
194
                        <td><span title="[% savedreport.date_created %]">[% savedreport.date_created | $KohaDates %]</span></td>
195
                        <td><span title="[% savedreport.date_created %]">[% savedreport.date_created | $KohaDates %]</span></td>
195
                        <td><span title="[% savedreport.last_modified %]">[% savedreport.last_modified | $KohaDates with_hours => 1 %]</span></td>
196
                        <td><span title="[% savedreport.last_modified %]">[% savedreport.last_modified | $KohaDates with_hours => 1 %]</span></td>
196
                        <td><span title="[% savedreport.last_run %]">[% savedreport.last_run | $KohaDates with_hours => 1 %]</span></td>
197
                        <td><span title="[% savedreport.last_run %]">[% savedreport.last_run | $KohaDates with_hours => 1 %]</span></td>
198
                        <td>
199
                        [% IF (savedreport.public) %]
200
                            Yes
201
                        [% ELSE %]
202
                            No
203
                        [% END %]
204
                        <td>
197
                        [% IF (savedreport.public) %]
205
                        [% IF (savedreport.public) %]
198
                        <td>Yes</td>
206
                            <a href="[% OPACBaseURL %]/cgi-bin/koha/svc/report?id=[% savedreport.id | html %]">[% OPACBaseURL %]/cgi-bin/koha/svc/report?id=[% savedreport.id | html %]</a>
199
                        [% ELSE %]
207
                        [% ELSE %]
200
                        <td>No</td>
208
                            <a href="/cgi-bin/koha/svc/report?id=[% savedreport.id | html %]">[% staffClientBaseURL %]/cgi-bin/koha/svc/report?id=[% savedreport.id | html %]</a>
201
                        [% END %]
209
                        [% END %]
210
                        </td>
202
                        [% IF (usecache) %] <td>[% savedreport.cache_expiry %]</td> [% END %]
211
                        [% IF (usecache) %] <td>[% savedreport.cache_expiry %]</td> [% END %]
203
                        <td>
212
                        <td>
204
                            [% FOR result IN savedreport.results %]
213
                            [% FOR result IN savedreport.results %]
205
- 

Return to bug 16782