mirror of
https://github.com/Django-LiveView/demo-alarms
synced 2026-01-09 06:43:41 +01:00
- Add informative section listing Django LiveView demo features - Move feature description below action buttons - Add footer with links to Django LiveView website and source code - Upgrade to django-liveview 2.1.7 from PyPI - Remove local templatetags (now included in package)
26 lines
1.1 KiB
HTML
26 lines
1.1 KiB
HTML
{% load static %}
|
|
{% load liveview %}
|
|
<!DOCTYPE html>
|
|
<html lang="en" data-room="{% liveview_room_uuid %}" data-theme="light" data-controller="page">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Home - Alert System</title>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@1.0.2/css/bulma.min.css">
|
|
<script src="{% static 'liveview/liveview.min.js' %}" defer></script>
|
|
</head>
|
|
<body class="has-background-white">
|
|
<div id="notifications" class="notifications-container" style="position: fixed; top: 20px; right: 20px; z-index: 1000; width: 300px;"></div>
|
|
<div id="modal-container"></div>
|
|
{% block content %}{% endblock %}
|
|
<footer class="footer mt-6">
|
|
<div class="content has-text-centered">
|
|
<p>
|
|
Built with <a href="https://django-liveview.andros.dev/" target="_blank" rel="noopener noreferrer"><strong>Django LiveView</strong></a>
|
|
| <a href="https://github.com/Django-LiveView/demo-alarms" target="_blank" rel="noopener noreferrer">Source Code</a>
|
|
</p>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html>
|