Auswahlen von Radiobuttons auf Selectboxen umgestellt.
authorMoritz Bunkus <m.bunkus@linet-services.de>
Fri, 25 Jul 2008 12:59:21 +0000 (12:59 +0000)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Fri, 25 Jul 2008 12:59:21 +0000 (12:59 +0000)
templates/webpages/am/config_de.html
templates/webpages/am/config_master.html

index 324dc45..7bcd15e 100644 (file)
      <tr>
       <th align="right">Menüsetup</th>
       <td>
-       <input name="menustyle" id="menustyle_v3" type="radio" class="radio" value="v3" [% IF menustyle_v3 %]checked[% END %]>&nbsp;
-       <label for="menustyle_v3">Oben (mit CSS)</label>
-       <input name="menustyle" id="menustyle_neu" type="radio" class="radio" value="neu" [% IF menustyle_neu %]checked[% END %]>&nbsp;
-       <label for="menustyle_neu">Oben (mit Javascript)</label>
-       <input name="menustyle" id="menustyle_xml" type="radio" class="radio" value="xml" [% IF menustyle_xml %]checked[% END %]>&nbsp;
-       <label for="menustyle_xml">Oben (XUL; nur f&uuml;r Mozilla Firefox)</label>
-       <input name="menustyle" id="menustyle_old" type="radio" class="radio" value="old" [% IF menustyle_old %]checked[% END %]>&nbsp;
-       <label for="menustyle_old">Alt (seitlich)</label>
+       <select name="menustyle">
+        <option value="v3"[% IF myconfig_menustyle == 'v3' %] selected[% END %]>Oben (mit CSS)</option>
+        <option value="neu"[% IF myconfig_menustyle == 'neu' %] selected[% END %]>Oben (mit Javascript)</option>
+        <option value="xml"[% IF myconfig_menustyle == 'xml' %] selected[% END %]>Oben (XUL; nur f&uuml;r Mozilla Firefox)</option>
+        <option value="old"[% IF myconfig_menustyle == 'old' %] selected[% END %]>Alt (seitlich)</option>
+       </select>
       </td>
      </tr>
 
      <tr>
       <th align="right">Formulardetails (zweite Positionszeile)</th>
       <td>
-       <input type="radio" id="rad_show_form_details" name="show_form_details" value="1" [% IF myconfig_show_form_details %]checked[% END %]>&nbsp;
-       <label for="rad_show_form_details">Standardm&auml;&szlig;ig anzeigen</label>
-       <input type="radio" id="rad_hide_form_details" name="show_form_details" value="0" [% UNLESS myconfig_show_form_details %]checked[% END %]>&nbsp;
-       <label for="rad_hide_form_details">Standardm&auml;&szlig;ig verstecken</label></td>
+       <select name="show_form_details">
+        <option value="1"[% IF  myconfig_show_form_details %] selected[% END %]>Standardm&auml;&szlig;ig anzeigen</option>
+        <option value="0"[% IF !myconfig_show_form_details %] selected[% END %]>Standardm&auml;&szlig;ig verstecken</option>
+       </select>
+      </td>
      </tr>
     </table>
 
index 280551a..1c692ac 100644 (file)
      <tr>
       <th align="right"><translate>Setup Menu</translate></th>
       <td>
-       <input name="menustyle" id="menustyle_v3" type="radio" class="radio" value="v3" [% IF menustyle_v3 %]checked[% END %]>&nbsp;
-       <label for="menustyle_v3"><translate>Top (CSS)</translate></label>
-       <input name="menustyle" id="menustyle_neu" type="radio" class="radio" value="neu" [% IF menustyle_neu %]checked[% END %]>&nbsp;
-       <label for="menustyle_neu"><translate>Top (Javascript)</translate></label>
-       <input name="menustyle" id="menustyle_xml" type="radio" class="radio" value="xml" [% IF menustyle_xml %]checked[% END %]>&nbsp;
-       <label for="menustyle_xml"><translate>Top (XUL; only for Mozilla Firefox)</translate></label>
-       <input name="menustyle" id="menustyle_old" type="radio" class="radio" value="old" [% IF menustyle_old %]checked[% END %]>&nbsp;
-       <label for="menustyle_old"><translate>Old (on the side)</translate></label>
+       <select name="menustyle">
+        <option value="v3"[% IF myconfig_menustyle == 'v3' %] selected[% END %]><translate>Top (CSS)</translate></option>
+        <option value="neu"[% IF myconfig_menustyle == 'neu' %] selected[% END %]><translate>Top (Javascript)</translate></option>
+        <option value="xml"[% IF myconfig_menustyle == 'xml' %] selected[% END %]><translate>Top (XUL; only for Mozilla Firefox)</translate></option>
+        <option value="old"[% IF myconfig_menustyle == 'old' %] selected[% END %]><translate>Old (on the side)</translate></option>
+       </select>
       </td>
      </tr>
 
      <tr>
       <th align="right"><translate>Form details (second row)</translate></th>
       <td>
-       <input type="radio" id="rad_show_form_details" name="show_form_details" value="1" [% IF myconfig_show_form_details %]checked[% END %]>&nbsp;
-       <label for="rad_show_form_details"><translate>Show by default</translate></label>
-       <input type="radio" id="rad_hide_form_details" name="show_form_details" value="0" [% UNLESS myconfig_show_form_details %]checked[% END %]>&nbsp;
-       <label for="rad_hide_form_details"><translate>Hide by default</translate></label></td>
+       <select name="show_form_details">
+        <option value="1"[% IF  myconfig_show_form_details %] selected[% END %]><translate>Show by default</translate></option>
+        <option value="0"[% IF !myconfig_show_form_details %] selected[% END %]><translate>Hide by default</translate></option>
+       </select>
+      </td>
      </tr>
     </table>