{% extends 'email_base.html' %} {% load i18n nc_base %} {% block title %}Chat History{% endblock %} {% block content %}

{% trans "Chat history" %}

{% trans "History of your chat from the" %} {{site}}

{% for msg in messages %} {% if msg.type == 'cli' %} {% elif msg.type == 'empl' and msg.data_type == null %} {% elif msg.type == 'tech' %} {% elif msg.type == 'empl' and msg.data_type == 'suggest' %} {% elif msg.type == 'dateline' %} {% endif %} {% endfor %}

{{ msg.timestamp|date:'g:i A' }} You

{{msg.text}}

{{ msg.sender_name }} {{ msg.timestamp|date:'g:i A' }}

{{msg.text}}

{% update_tech msg.text %}
{{ msg.sender_name }} {% trans "recommended product for you:" %}

{{msg.text}}
{{ msg.data.currency }} {{ msg.data.price }}
{{msg.timestamp}}
{% endblock %}