This commit is contained in:
Víðir Valberg Guðmundsson 2023-05-17 17:45:26 +02:00
parent 1e07ed4b8d
commit 08c5ccc68a
2 changed files with 1 additions and 6 deletions

View File

@ -1,4 +1,4 @@
Title: Server-Sent Events and PostgreSQL LISTEN/NOTIFY using Djangos StreamingHttpRequest
Title: Writing a chat application in Django 4.2 using async StreamingHttpResponse, Server-Sent Events and PostgreSQL LISTEN/NOTIFY
Date: 2023-05-17
Status: published
Tags: django, sse, postgresql

View File

@ -27,11 +27,6 @@
datetime="{{ article.date.isoformat() }}">
{{ article.locale_date }}
</time>
<address class="vcard author">By
{% for author in article.authors %}
<a class="url fn" href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a>
{% endfor %}
</address>
</footer><!-- /.post-info -->
<div class="entry-content"> {{ article.summary }} </div><!-- /.entry-content -->
</article>