{% extends "base.html" %} {% block content %}

Alert System

Real-time alerts with Django LiveView

{% include 'alerts/components/alerts_table.html' %}

Django LiveView Demo

This is a demonstration of Django LiveView capabilities. Features you'll see:

  • Dynamic page changes: Click "New Alert Form" to navigate without page reload
  • Form validation: Submit empty or invalid data to see real-time validation
  • Real-time updates: Click "Add Random Alert" to see live table updates
  • Modal interactions: Click "Details" on any alert to see modal with URL update
  • Broadcast notifications: Notifications are seen by all connected users in real-time (try opening another browser to see the interaction)
  • WebSocket communication: All interactions happen through WebSockets, no HTTP requests
{% endblock %}