| Lines 111-117
          
      
      
        Link Here | 
        
          | 111 |                         [% END %] | 111 |                         [% END %] | 
        
          | 112 |                     </select> | 112 |                     </select> | 
        
          | 113 |                     [% ELSIF ( CHUNK.type_modalselect ) %] | 113 |                     [% ELSIF ( CHUNK.type_modalselect ) %] | 
          
            
              | 114 |                         <input type="text" name="pref_[% CHUNK.name | html %]" id="pref_[% CHUNK.name | html %]" class="modalselect preference preference-[% CHUNK.type | html %]" data-source="[% CHUNK.source | html %]" data-exclusions="[% CHUNK.exclusions %]" readonly="readonly" value="[% CHUNK.value | html %]"/> | 114 |                         <input type="text" name="pref_[% CHUNK.name | html %]" id="pref_[% CHUNK.name | html %]" class="modalselect preference preference-[% CHUNK.type | html %]" data-source="[% CHUNK.source | html %]" data-exclusions="[% CHUNK.exclusions | html %]" readonly="readonly" value="[% CHUNK.value | html %]"/> | 
        
          | 115 |                     [% ELSIF ( CHUNK.type_multiple ) %] | 115 |                     [% ELSIF ( CHUNK.type_multiple ) %] | 
        
          | 116 |                     <select name="pref_[% CHUNK.name | html %]" id="pref_[% CHUNK.name | html %]" class="preference preference-[% CHUNK.class or "choice" | html %]" multiple="multiple"> | 116 |                     <select name="pref_[% CHUNK.name | html %]" id="pref_[% CHUNK.name | html %]" class="preference preference-[% CHUNK.class or "choice" | html %]" multiple="multiple"> | 
        
          | 117 |                         [% FOREACH CHOICE IN CHUNK.CHOICES %][% IF ( CHOICE.selected ) %]<option value="[% CHOICE.value | html %]" selected="selected">[% ELSE %]<option value="[% CHOICE.value | html %]">[% END %][% CHOICE.text | html %]</option>[% END %] | 117 |                         [% FOREACH CHOICE IN CHUNK.CHOICES %][% IF ( CHOICE.selected ) %]<option value="[% CHOICE.value | html %]" selected="selected">[% ELSE %]<option value="[% CHOICE.value | html %]">[% END %][% CHOICE.text | html %]</option>[% END %] | 
            
              | 118 | -  |  |  |