{% extends "base.html" %} {% block title %}Intents - MCP Network Diagnostics{% endblock %} {% block content %}
| 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 %} |
No intents configured
{% endif %}