{% extends "base.html" %} {% block title %}Intents - MCP Network Diagnostics{% endblock %} {% block content %}
Monitoring Intents
{% if intents %} {% for intent in intents %} {% endfor %}
Intent Created Status Last Checked
{{ intent.natural_language }} {{ intent.created_at.strftime('%Y-%m-%d') }} {{ 'Active' if intent.active else 'Inactive' }} {% if intent.last_checked %} {{ intent.last_checked.strftime('%H:%M:%S') }} {% else %} Never {% endif %}
{% else %}

No intents configured

{% endif %}
{% endblock %}