1
2            <p class="nd_sidebar-title"><em>Port Utilization</em></p>
3            <div class="clearfix">
4              <em class="muted">Mark as Free if Down for:</em><br/>
5              <select id="nd_days-select" name="age_num">
6                [% FOREACH count IN [1..31] %]
7                <option[% ' selected="selected"' IF vars.sidebar_defaults.report_portutilization.age_num == count %]>[% count | html_entity %]</option>
8                [% END %]
9              </select>
10              <select id="nd_age-select" name="age_unit">
11                [% FOREACH unit IN [ 'days', 'weeks', 'months', 'years' ] %]
12                <option[% ' selected="selected"' IF vars.sidebar_defaults.report_portutilization.age_unit == unit %]>[% unit | html_entity %]</option>
13                [% END %]
14              </select>
15            </div>
16
17            <button id="[% report.tag | html_entity %]_submit" type="submit" class="btn btn-info">
18             <i class="icon-search icon-large pull-left nd_navbar-icon"></i> Run Report</button>
19
20