summaryrefslogtreecommitdiffstats
path: root/askbot/templates/group_messaging/macros.html
blob: 7fbe44346bba82b8fa4091974bc03ec02dad7a16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{%- macro message(post, visitor) -%}
<div class="message" data-message-id="{{ post.id }}">
    <p class="header">
        {% if post.sender == visitor %}
            {% trans date=post.sent_at %}You wrote on {{ date }}:{% endtrans %}
        {% else %}
            {% trans user=post.sender.username,
                date=post.sent_at
            %}{{ user }} wrote on {{ date }}:{% endtrans %}
        {% endif %}
    </p>
    <div class="content">
    {{ post.html|safe }}
    </div>
</div>
{%- endmacro -%}