Upd.
This commit is contained in:
parent
1e07ed4b8d
commit
08c5ccc68a
|
@ -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
|
Date: 2023-05-17
|
||||||
Status: published
|
Status: published
|
||||||
Tags: django, sse, postgresql
|
Tags: django, sse, postgresql
|
||||||
|
|
|
@ -27,11 +27,6 @@
|
||||||
datetime="{{ article.date.isoformat() }}">
|
datetime="{{ article.date.isoformat() }}">
|
||||||
{{ article.locale_date }}
|
{{ article.locale_date }}
|
||||||
</time>
|
</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 -->
|
</footer><!-- /.post-info -->
|
||||||
<div class="entry-content"> {{ article.summary }} </div><!-- /.entry-content -->
|
<div class="entry-content"> {{ article.summary }} </div><!-- /.entry-content -->
|
||||||
</article>
|
</article>
|
||||||
|
|
Loading…
Reference in a new issue