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

Searching for "{{ query }}"

{% if item_results|length > 0 %}

Hardware components:

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

Software licenses:

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