RSS Git Download  Clone
Raw Blame History
<!-- BEGIN screen.screen_category_select.tt -->
    <select name="screen_category" id="screen_category"
            onchange="showhide_screens(this.form,this.value)">
        <option value="">&nbsp;</option>
        [% FOREACH entry IN screen_categories;
            NEXT UNLESS entry.is_active.match('yes') %]
        <option value="[% entry.id %]">
            [% entry.name %]
        </option>
       [% END %]
    </select>
    [% error_screen_category %]

    <!-- // replaced by ajax output after selection of screen_category: -->
    <select name="screen_id" id="screen_name">			
        <option value="">--select one--</option>
    </select>
    [% error_screen_id %]
<!-- END screen/screen_category_select.tt -->