{% extends "base.html" %} {% block content %} {% if event == "incident_created" %}

⚠️ Service Incident

We're experiencing issues with {{ component_name }}.

{{ message }}

We're investigating and will provide updates.

{% elif event == "incident_resolved" %}

✅ Incident Resolved

The issue with {{ component_name }} has been resolved.

{{ message }}

Thank you for your patience.

{% elif event == "maintenance_scheduled" %}

🔧 Scheduled Maintenance

We have scheduled maintenance for {{ component_name }}.

When: {{ scheduled_time }}

Duration: {{ duration }}

{{ message }}

{% elif event == "maintenance_started" %}

🔧 Maintenance In Progress

Maintenance has started for {{ component_name }}.

{{ message }}

We expect this to complete shortly.

{% elif event == "maintenance_completed" %}

✅ Maintenance Complete

Maintenance for {{ component_name }} is complete.

{{ message }}

All services are operating normally.

{% else %}

📢 Status Update

Component: {{ component_name }}

{{ message }}

{% endif %}

View Status Page

Unsubscribe from status updates

{% endblock %}