Skip to content
Snippets Groups Projects
Commit 53677082 authored by David Baker's avatar David Baker
Browse files

Add the jinja template for individual notifs

parent 9dba1b66
No related branches found
No related tags found
No related merge requests found
<div class="notif">
<div>
{% for message in notif.messages %}
<div class="message {% if message.is_historical %}historical{% endif %}">
{% if message.sender_avatar_url %}
<img class="sender_avatar" src="{{ message.sender_avatar_url|mxc_to_http(48,48) }}" />
{% else %}
{% if message.sender_hash % 3 == 0 %}
<img class="sender_avatar" src="https://vector.im/beta/img/76cfa6.png" />
{% elif message.sender_hash % 3 == 1 %}
<img class="sender_avatar" src="https://vector.im/beta/img/50e2c2.png" />
{% else %}
<img class="sender_avatar" src="https://vector.im/beta/img/f4c371.png" />
{% endif %}
<img class="sender_avatar" src="{{ message.sender_avatar_url }}" />
{% endif %}
<div class="sender_name">{{ message.sender_name }}</div>
<div class="message_time">{{ message.ts|format_ts("%H:%M") }}</div>
<div class="message_body">
{% if message.format == "org.matrix.custom.html" %}
{{ message.body_text_html }}
{% else %}
{{ message.body_text_plain }}
{% endif %}
</div>
</div>
{% endfor %}
</div>
<div class="notif_link">
<a href="{{ link }}">View in Vector</a>
</div>
</div>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment