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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/fieldmapping.tt (-3 / +3 lines)
Lines 25-31 $(document).ready(function() { Link Here
25
		<div class="yui-b">
25
		<div class="yui-b">
26
            <h2>Keyword to MARC mapping</h2>
26
            <h2>Keyword to MARC mapping</h2>
27
            [% UNLESS ( fields.count ) %]
27
            [% UNLESS ( fields.count ) %]
28
                <div class="dialog message"><p>There are no mappings for the [% IF framework.frameworktext %]<em>[% framework.frameworktext %]</em>[% ELSE %]default[% END %] framework. </p></div>
28
                <div class="dialog message"><p>There are no mappings for the [% IF framework.frameworktext %]<em>[% framework.frameworktext |html %]</em>[% ELSE %]default[% END %] framework. </p></div>
29
            [% END %]
29
            [% END %]
30
			<form method="get" action="/cgi-bin/koha/admin/fieldmapping.pl" id="selectframework">
30
			<form method="get" action="/cgi-bin/koha/admin/fieldmapping.pl" id="selectframework">
31
				<label for="framework">Framework:</label>
31
				<label for="framework">Framework:</label>
Lines 33-41 $(document).ready(function() { Link Here
33
                    <option value="">Default</option>
33
                    <option value="">Default</option>
34
                [% FOREACH f IN frameworks %]
34
                [% FOREACH f IN frameworks %]
35
                    [% IF f.frameworkcode == framework.frameworkcode %]
35
                    [% IF f.frameworkcode == framework.frameworkcode %]
36
                    <option selected="selected" value="[% f.frameworkcode %]">[% f.frameworktext %]</option>
36
                    <option selected="selected" value="[% f.frameworkcode %]">[% f.frameworktext |html %]</option>
37
                    [% ELSE %]
37
                    [% ELSE %]
38
                    <option value="[% f.frameworkcode %]">[% f.frameworktext %]</option>
38
                    <option value="[% f.frameworkcode %]">[% f.frameworktext |html %]</option>
39
                    [% END %]
39
                    [% END %]
40
                [% END %]
40
                [% END %]
41
                </select>
41
                </select>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/items_search_fields.tt (-3 / +2 lines)
Lines 77-84 Link Here
77
                          <td>[% field.tagsubfield %]</td>
77
                          <td>[% field.tagsubfield %]</td>
78
                          <td>[% field.authorised_values_category %]</td>
78
                          <td>[% field.authorised_values_category %]</td>
79
                          <td>
79
                          <td>
80
                            <a class="btn btn-default btn-xs" href="/cgi-bin/koha/admin/items_search_field.pl?name=[% field.name %]" title="Edit [% field.name %] field"><i class="fa fa-pencil"></i> Edit</a>
80
                            <a class="btn btn-default btn-xs" href="/cgi-bin/koha/admin/items_search_field.pl?name=[% field.name |html %]" title="Edit [% field.name |html %] field"><i class="fa fa-pencil"></i> Edit</a>
81
                            <a class="field-delete btn btn-default btn-xs" href="/cgi-bin/koha/admin/items_search_fields.pl?op=del&name=[% field.name %]"><i class="fa fa-trash"></i> Delete</a>
81
                            <a class="field-delete btn btn-default btn-xs" href="/cgi-bin/koha/admin/items_search_fields.pl?op=del&name=[% field.name |html %]"><i class="fa fa-trash"></i> Delete</a>
82
                          </td>
82
                          </td>
83
                        </tr>
83
                        </tr>
84
                      [% END %]
84
                      [% END %]
85
- 

Return to bug 19108