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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/background_jobs/marc_import_commit_batch.inc (-1 / +3 lines)
Lines 3-9 Link Here
3
[% BLOCK report %]
3
[% BLOCK report %]
4
    [% SET report = job.report %]
4
    [% SET report = job.report %]
5
    [% IF report %]
5
    [% IF report %]
6
        <div class="dialog message">Completed import of records</div>
6
        [% IF job.status == 'finished' %]
7
            <div class="dialog message">Completed import of records</div>
8
        [% END %]
7
        <table>
9
        <table>
8
            <tr>
10
            <tr>
9
                <td>Number of records added</td>
11
                <td>Number of records added</td>
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/background_jobs/marc_import_revert_batch.inc (-1 / +3 lines)
Lines 3-9 Link Here
3
[% BLOCK report %]
3
[% BLOCK report %]
4
    [% SET report = job.report %]
4
    [% SET report = job.report %]
5
    [% IF report %]
5
    [% IF report %]
6
        <div class="dialog message">Success: Import reverted</div>
6
        [% IF job.status == 'finished' %]
7
            <div class="dialog message">Success: Import reverted</div>
8
        [% END %]
7
        <table>
9
        <table>
8
            <tr>
10
            <tr>
9
                <td>Number of records deleted</td>
11
                <td>Number of records deleted</td>
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/background_jobs/stage_marc_for_import.inc (-2 / +5 lines)
Lines 3-10 Link Here
3
[% BLOCK report %]
3
[% BLOCK report %]
4
    [% SET report = job.report %]
4
    [% SET report = job.report %]
5
    [% IF report %]
5
    [% IF report %]
6
        [% IF job.status == 'finished' %]
7
            <div class="dialog message">Completed staging records</div>
8
        [% END %]
9
6
        <h2>MARC staging results</h2>
10
        <h2>MARC staging results</h2>
7
        [% SWITCH (record_type) %]
11
        [% SWITCH job.decoded_data.record_type %]
8
        [% CASE 'biblio' %]
12
        [% CASE 'biblio' %]
9
            <h3>Processing bibliographic records</h3>
13
            <h3>Processing bibliographic records</h3>
10
        [% CASE 'auth' %]
14
        [% CASE 'auth' %]
11
- 

Return to bug 27421