2022-12-11 22:27:45 -05:00
|
|
|
<div class="row">
|
|
|
|
<div class="twelve columns">
|
2022-12-17 23:43:26 -05:00
|
|
|
<h4>Matching inventory:</h4>
|
|
|
|
<% if results.length > 0 %>
|
2022-12-11 22:27:45 -05:00
|
|
|
<ul class="u-full-width">
|
2022-12-17 23:43:26 -05:00
|
|
|
<% results.each do |r| %>
|
|
|
|
<li><a href="<%= r.getLink() %>"><%= r.name %></a></li>
|
2022-12-11 22:27:45 -05:00
|
|
|
<% end %>
|
|
|
|
</ul>
|
|
|
|
<% else %>
|
|
|
|
<p>Sorry, nothing in your hardware inventory matches that search term.</p>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
</div>
|