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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_record_modification.tt (-2 / +3 lines)
Lines 269-276 Link Here
269
                    [% ELSIF view == 'errors' %]
269
                    [% ELSIF view == 'errors' %]
270
                        [% FOR error IN errors %]
270
                        [% FOR error IN errors %]
271
                            [% IF error == 'no_template_defined' %]
271
                            [% IF error == 'no_template_defined' %]
272
                                <div class="dialog alert">
272
                                <div class="dialog message">
273
                                    No MARC modification template is defined. You have <a href="/cgi-bin/koha/tools/marc_modification_templates.pl">to create</a> at least one template for using this tool.
273
                                    <p>No MARC modification template is defined. You have to create at least one template in order to use this tool.</p>
274
                                    <a class="btn btn-default" href="/cgi-bin/koha/tools/marc_modification_templates.pl"><i class="fa fa-plus"></i> Create a new MARC modification template</a>
274
                                </div>
275
                                </div>
275
                            [% END %]
276
                            [% END %]
276
                        [% END %]
277
                        [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/marc_modification_templates.tt (-2 / +4 lines)
Lines 307-313 Link Here
307
307
308
            [% ELSE %]
308
            [% ELSE %]
309
                <h1>MARC modification templates</h1>
309
                <h1>MARC modification templates</h1>
310
                <div class="dialog message"><p>There are no defined templates. Please create a template first.</p></div>
310
                <div class="dialog message">
311
                    <p>There are no defined templates. Please create a template first.</p>
312
                    <a href="#" data-toggle="modal" data-target="#createTemplate" class="btn btn-default"><i class="fa fa-plus"></i> Create a new template</a>
313
                </div>
311
            [% END # /IF TemplatesLoop %]
314
            [% END # /IF TemplatesLoop %]
312
315
313
            <!-- Modal to create new template -->
316
            <!-- Modal to create new template -->
314
- 

Return to bug 32164