{% extends "admin/change_form.html" %} {% block after_related_objects %}
{% for msg in chat_messages %} {%if msg.type == "tech" %}
{{msg.timestamp}}: {{msg.text}}
{% endif %} {%if msg.type == "empl" %}
{{msg.sender_name}} {{msg.timestamp}}

{% if msg.data_type == "attach" %}{%endif%}{{msg.text}}{% if msg.data_type == "attach" %}{%endif%}

{% endif %} {% if msg.type == "cli" %}
{{msg.sender_name}} {{msg.timestamp}}

{% if msg.data_type == "attach" %}{%endif%}{{msg.text}}{% if msg.data_type == "attach" %}{%endif%}

{% endif %} {% endfor %}
 
{% endblock %}