{% extends 'layout.twig' %} {% block title %}Search{% endblock %} {% block content %}

Searching for "{{ query }}"

{% if itemResults|length > 0 %}

Hardware components:

{% for item in itemResults %} {% endfor %}
Name Type Updated at
{{ item.name }} {{ item.type }} {{ item.updatedAt | date("m/d/Y h:i:s A") }}
{% endif %} {% if licenseResults|length > 0 %}

Software licenses:

{% for license in licenseResults %} {% endfor %}
Name Vendor Updated at
{{ license.name }} {{ license.manufacturer }} {{ license.updatedAt | date("m/d/Y h:i:s A") }}
{% endif %} {% endblock %}