{% extends "chats/components/channel_conversation.html" %} {% load community_utils %} {% load sekizai_tags %} {% load chats %} {% block threads %}
{% thread_card thread threadcomment_form expand=True %}
{% addtoblock "js" %} {% if request.GET.reply %} {% endif %} {% endaddtoblock %} {% endblock %} {% block initial_decryption %} {% if thread.encryption_key %} decryptElem("thread-data", {{ thread.pk }}); {% endif %} {% for threadcomment in thread.threadcomment_set.all %} {% if threadcomment.encryption_key %} {% with elem_id=threadcomment|object_id|str_add:"-js" %} decryptElem("{{ elem_id }}", {{ threadcomment.pk }}); {% endwith %} {% endif %} {% endfor %} {% endblock %}