Files
netdisco/share/views/sidebar/report/moduleinventory.tt
nick n cd2a4b9362 html template fixups (#576)
* none is not a valid value for min-width, so set it to zero

* these 2 "checked" if statements need a space in front of them,
else they will attach to the previous element

id="nd_showspeed"checked="checked"

* multiple tag has no options according to
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select

also, don't close select before we've gotten to the option tags

* multiple tag has no options according to
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select

also, don't close select before we've gotten to the option tags

* just to be sure put a space in front of these optional tags as well,

* $a is technically allowed but is considered not best practice
2019-05-12 08:32:42 +01:00

79 lines
4.6 KiB
Plaintext

<p class="nd_sidebar-title"><em>Module Search</em></p>
<div class="clearfix">
<i id="device_clear_btn" data-btn-for="device"
class="nd_field-clear-icon icon-trash icon-large"></i>
<input class="nd_side-input nd_colored-input" placeholder="Device"
type="text" name="device" value="[% params.dns | html_entity %]"
rel="tooltip" data-placement="left" data-offset="5" data-title="Device IP, DNS, Description, Name, Location, Serial, or Contact"/>
</div>
<div class="clearfix">
<i id="description_clear_btn" data-btn-for="description"
class="nd_field-clear-icon icon-trash icon-large"></i>
<input class="nd_side-input nd_colored-input" placeholder="Module Description"
type="text" name="description" value="[% params.description | html_entity %]"
rel="tooltip" data-placement="left" data-offset="5" data-title="Module Description"/>
</div>
<div class="clearfix">
<i id="name_clear_btn" data-btn-for="name"
class="nd_field-clear-icon icon-trash icon-large"></i>
<input class="nd_side-input nd_colored-input" placeholder="Module Name"
type="text" name="name" value="[% params.name | html_entity %]"
rel="tooltip" data-placement="left" data-offset="5" data-title="Module Name"/>
</div>
<div class="clearfix">
<i id="type_clear_btn" data-btn-for="type"
class="nd_field-clear-icon icon-trash icon-large"></i>
<input class="nd_side-input nd_colored-input" placeholder="Module Type"
type="text" name="type" value="[% params.type | html_entity %]"
rel="tooltip" data-placement="left" data-offset="5" data-title="Module Type"/>
</div>
<div class="clearfix">
<i id="model_clear_btn" data-btn-for="model"
class="nd_field-clear-icon icon-trash icon-large"></i>
<input class="nd_side-input nd_colored-input" placeholder="Module Model"
type="text" name="model" value="[% params.model | html_entity %]"
rel="tooltip" data-placement="left" data-offset="5" data-title="Module Model"/>
</div>
<div class="clearfix">
<i id="serial_clear_btn" data-btn-for="serial"
class="nd_field-clear-icon icon-trash icon-large"></i>
<input class="nd_side-input nd_colored-input" placeholder="Module Serial"
type="text" name="serial" value="[% params.serial | html_entity %]"
rel="tooltip" data-placement="left" data-offset="5" data-title="Module Serial"/>
</div>
<div class="clearfix">
<select class="nd_side-select nd_colored-input" size="[% class_list.size > 5 ? 5 : class_list.size %]"
multiple name="class"
rel="tooltip" data-placement="left" data-offset="5" data-title="Module Class">
[% FOREACH opt IN class_list %]
<option[% ' selected="selected"' IF class_lkp.exists(opt) %]>[% opt | html_entity %]</option>
[% END %]
</select>
</div>
<fieldset>
<legend class="nd_sidebar-legend">
<label><em><strong>Options</strong></em></label>
</legend>
<div class="clearfix input-prepend">
<label class="add-on">
<input type="checkbox" id="fruonly"
name="fruonly"[% ' checked="checked"' IF (params.fruonly OR vars.sidebar_defaults.report_moduleinventory.fruonly) %]/>
</label>
<label class="nd_checkboxlabel" for="fruonly">
<span class="nd_searchcheckbox uneditable-input">FRU Only</span>
</label>
</div>
<div class="clearfix input-prepend">
<label class="add-on">
<input type="checkbox" id="matchall"
name="matchall"[% ' checked="checked"' IF (params.matchall OR vars.sidebar_defaults.report_moduleinventory.matchall) %]/>
</label>
<label class="nd_checkboxlabel" for="matchall">
<span class="nd_searchcheckbox uneditable-input">Match All Options</span>
</label>
</div>
</fieldset>
<button id="[% tab.tag %]_submit" type="submit" class="btn btn-info">
<i class="icon-search icon-large pull-left nd_navbar-icon"></i> Search Modules</button>