{% extends "base.html" %} {% load static %} {% block title %}{{ object.name }} - {{ block.super }}{% endblock %} {% block content %}
| 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" }} |
{{ object.description }}
| Auth Type: | {{ object.get_authentication_type_display }} |
| Timeout: | {{ object.timeout_seconds }} seconds |
| Retry: | {{ object.retry_attempts }} attempts, {{ object.retry_delay_seconds }}s delay |
{{ log.details|truncatechars:100 }}
Activity logs will appear here once the system starts processing
{{ object.configuration|pprint }}