{% extends "base.html" %} {% load static %} {% block title %}{{ object.name }} - {{ block.super }}{% endblock %} {% block content %}

{{ object.name }}

Edit
System Status
{% if object.is_active %}Active{% else %}Inactive{% endif %}
Current state
Health Status
{% if object.last_health_check_status == 'HEALTHY' %}Healthy{% elif object.last_health_check_status == 'UNHEALTHY' %}Unhealthy{% else %}Unknown{% endif %}
{% if object.last_health_check %}{{ object.last_health_check|timesince }} ago{% else %}Never checked{% endif %}
Total Endpoints
{{ total_endpoints }}
Configured
Executions Today
{{ executions_today }}
{{ successful_executions }} successful
System Information
Name: {{ object.name }}
Type: {{ object.get_system_type_display }}
Vendor: {{ object.vendor|default:"Not specified" }}
Version: {{ object.version|default:"Not specified" }}
Created: {{ object.created_at|date:"M d, Y H:i" }}
Status: {% if object.is_active %}Active{% else %}Inactive{% endif %}
Health: {% if object.last_health_check_status == 'HEALTHY' %}Healthy{% elif object.last_health_check_status == 'UNHEALTHY' %}Unhealthy{% else %}Unknown{% endif %}
Last Check: {% if object.last_health_check %} {{ object.last_health_check|date:"M d, Y H:i" }} {% else %} Never {% endif %}
Updated: {{ object.updated_at|date:"M d, Y H:i" }}
{% if object.description %}
Description:

{{ object.description }}

{% endif %}
Connection Details
{% if object.base_url %} {% endif %} {% if object.host %} {% endif %} {% if object.database_name %} {% endif %}
Base URL: {{ object.base_url }}
Host: {{ object.host }}{% if object.port %}:{{ object.port }}{% endif %}
Database: {{ object.database_name }}
Auth Type: {{ object.get_authentication_type_display }}
Timeout: {{ object.timeout_seconds }} seconds
Retry: {{ object.retry_attempts }} attempts, {{ object.retry_delay_seconds }}s delay
Recent Activity
View All
{% if recent_logs %}
{% for log in recent_logs %}
{{ log.message }}

{{ log.details|truncatechars:100 }}

{{ log.timestamp|timesince }} ago
{% endfor %}
{% else %}
No recent activity

Activity logs will appear here once the system starts processing

{% endif %}
Quick Actions
View Endpoints View Executions
Statistics

{{ total_endpoints }}

Endpoints

{{ total_mappings }}

Mappings

{{ executions_today }}

Today

{{ total_executions }}

Total
{% if object.configuration %}
Configuration
{{ object.configuration|pprint }}
{% endif %} {% if related_systems %}
Related Systems
{% for system in related_systems %}
{{ system.name }}
{{ system.get_system_type_display }}
{% endfor %}
{% endif %}
{% endblock %}