| 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> |