mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Add the jinja template for individual notifs
This commit is contained in:
parent
9dba1b668c
commit
5367708236
32
res/templates/notif.html
Normal file
32
res/templates/notif.html
Normal file
@ -0,0 +1,32 @@
|
||||
<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>
|
Loading…
Reference in New Issue
Block a user