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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/checkmarc.tt (-15 / +16 lines)
Lines 4-14 Link Here
4
[% SET footerjs = 1 %]
4
[% SET footerjs = 1 %]
5
[% INCLUDE 'doc-head-open.inc' %]
5
[% INCLUDE 'doc-head-open.inc' %]
6
<title>[% FILTER collapse %]
6
<title>[% FILTER collapse %]
7
    [% IF ( total ) %]
7
    [% t("MARC bibliographic framework test") | html %] &rsaquo;
8
        [% tx("MARC check: {total} errors found", { total = total }) | html %]
9
    [% ELSE %]
10
        [% t("MARC check: Configuration OK!") | html %]
11
    [% END %] &rsaquo;
12
    [% t("Administration") | html %] &rsaquo;
8
    [% t("Administration") | html %] &rsaquo;
13
    [% t("Koha") | html %]
9
    [% t("Koha") | html %]
14
[% END %]</title>
10
[% END %]</title>
Lines 25-35 Link Here
25
            <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a>
21
            <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a>
26
        [% END %]
22
        [% END %]
27
        [% WRAPPER breadcrumb_item bc_active= 1 %]
23
        [% WRAPPER breadcrumb_item bc_active= 1 %]
28
            [% IF ( total ) %]
24
            <span>MARC bibliographic framework test</span>
29
                <span>MARC check: [% total | html %] errors found</span>
30
            [% ELSE %]
31
                <span>MARC check: Configuration OK!</span>
32
            [% END %]
33
        [% END %]
25
        [% END %]
34
    [% END #/ WRAPPER breadcrumbs %]
26
    [% END #/ WRAPPER breadcrumbs %]
35
[% END #/ WRAPPER sub-header.inc %]
27
[% END #/ WRAPPER sub-header.inc %]
Lines 41-46 Link Here
41
33
42
<h1>MARC bibliographic framework test</h1>
34
<h1>MARC bibliographic framework test</h1>
43
35
36
[% IF ( total ) %]
37
    <div class="dialog alert">
38
        <h2>Configuration errors found</h2>
39
        You have [% total | html %] error(s) in your MARC configuration. Please fix them before using Koha
40
    </div>
41
[% ELSE %]
42
    <div class="dialog message">
43
        <h2>Configuration okay</h2> You don't have errors in your MARC configuration
44
    </div>
45
[% END %]
46
44
<div class="page-section">
47
<div class="page-section">
45
<table>
48
<table>
46
    <tr>
49
    <tr>
Lines 50-63 Link Here
50
<!-- -->
53
<!-- -->
51
[% IF ( itemnum ) %]
54
[% IF ( itemnum ) %]
52
    <tr>
55
    <tr>
53
        <td>itemnum</td>
56
        <td>itemnumber</td>
54
        <td><ul><li>The field itemnum MUST be mapped </li>
57
        <td><ul><li>The field itemnumber MUST be mapped </li>
55
            <li>The corresponding subfield MUST be in with -1 (ignore) tab</li></ul></td>
58
            <li>The corresponding subfield MUST be in with -1 (ignore) tab</li></ul></td>
56
    </tr>
59
    </tr>
57
[% ELSE %]
60
[% ELSE %]
58
    <tr>
61
    <tr>
59
        <td>OK</td>
62
        <td>OK</td>
60
        <td>itemnum : the field itemnumber is mapped to a field in tab -1</td>
63
        <td>itemnumber : the field itemnumber is mapped to a field in tab -1</td>
61
    </tr>
64
    </tr>
62
[% END %]
65
[% END %]
63
<!-- -->
66
<!-- -->
Lines 290-296 Link Here
290
</table>
293
</table>
291
[% ELSE %]
294
[% ELSE %]
292
    </table>
295
    </table>
293
        <p><strong>Configuration OK, you don't have errors in your MARC parameters table</strong></p>
294
    </div> <!-- /.page-section -->
296
    </div> <!-- /.page-section -->
295
[% END %]
297
[% END %]
296
298
297
- 

Return to bug 34394