example-in-django-waiting-r.../waiting_room/templates/components/tasks/layout.html

16 lines
359 B
HTML
Raw Normal View History

2024-11-07 08:17:10 +01:00
<section
id="component-notification"
hx-ext="ws"
style="
position: fixed;
right: 0;
bottom: 0;
padding: 2rem;
background: lightgray;
">
{% include 'components/tasks/update.html' %}
</section>
<script>
document.querySelector('#component-notification').setAttribute('ws-connect', '/ws/' + localStorage.getItem('userId') + '/');
</script>