{% extends "base.html" %} {% block title %}TAPDB Admin - Complex Query{% endblock %} {% block content %}

Complex Query

Advanced Object Search

Filter templates, instances, and lineages with multiple fields. Results are read-only links to object detail pages.

Clear

Results

{% if should_run %} {% if results %} {% for row in results %} {% endfor %}
Kind EUID Name Category Type/Subtype Created
{{ row.kind }} {{ row.euid }} {{ row.name or '-' }} {{ row.category or '-' }} {{ row.type or '-' }}/{{ row.subtype or '-' }} {{ row.created_dt.strftime('%Y-%m-%d %H:%M:%S') if row.created_dt else '-' }}
{% else %}

No objects matched this query.

{% endif %} {% else %}

Set at least one filter (or pick a specific kind) and run query.

{% endif %}
{% endblock %}