{% extends "base.html" %} {% block title %}TapDB Search{% endblock %} {% block content %} Search {% for kind in ["all", "template", "instance", "lineage"] %} {{ kind }} {% endfor %} Search Results EUIDKindNameTypeStatus {% for item in results["items"] %} {{ item.euid }} {{ item.record_type }} {{ item.name or "-" }} {{ item.category }}/{{ item.type }}/{{ item.subtype }} {{ item.bstatus or "-" }} {% endfor %} {% if not results["items"] %} No matching TapDB objects. {% endif %} {% endblock %}