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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/UsageStatisticsDataProvidersList.vue (-4 / +12 lines)
Lines 245-253 export default { Link Here
245
                                success => {
245
                                success => {
246
                                    let message = ""
246
                                    let message = ""
247
                                    success.jobs.forEach((job, i) => {
247
                                    success.jobs.forEach((job, i) => {
248
                                        message += this.$__(
248
                                        message +=
249
                                            '<li>Job for report type <strong>%s</strong> has been queued, <a href="/cgi-bin/koha/admin/background_jobs.pl?op=view&id=%s" target="_blank">click here</a> to check its progress.</li>'
249
                                            "<li>" +
250
                                        ).format(job.report_type, job.job_id)
250
                                            this.$__(
251
                                                "Job for report type <strong>%s</strong> has been queued"
252
                                            ).format(job.report_type) +
253
                                            ', <a href="/cgi-bin/koha/admin/background_jobs.pl?op=view&id=' +
254
                                            job.job_id +
255
                                            '" target="_blank">' +
256
                                            this.$__("click here") +
257
                                            "</a> " +
258
                                            $this.__("to check its progress.") +
259
                                            "</li>"
251
                                    })
260
                                    })
252
                                    this.setMessage(message, true)
261
                                    this.setMessage(message, true)
253
                                },
262
                                },
254
- 

Return to bug 35392