{% extends "alerts/ssr/base.html" %} {% block title %}Home - Alert System SSR{% endblock %} {% block content %}

Alert System (SSR)

Standard Django with full page reloads

{% for alert in alerts %} {% empty %} {% endfor %}
ID Type Description Actions
{{ alert.id }} {{ alert.type }} {{ alert.description|truncatewords:10 }} Details
{% csrf_token %}
No alerts yet
{% csrf_token %}
New Alert Form

Standard Django (SSR) Demo

This version uses traditional Django patterns:

  • Full page reloads: Every action triggers a complete page refresh
  • Traditional forms: POST requests with redirects
  • Django messages: Notifications shown after redirect
  • No JavaScript framework: Pure server-side rendering
  • No real-time updates: Must manually refresh to see changes from other users
{% endblock %}