mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
5599608887
Remove templates-vector and theme templates with variables instead Switch to matrix.to URLs by default for links
13 lines
374 B
Plaintext
13 lines
374 B
Plaintext
{% for message in notif.messages %}
|
|
{{ message.sender_name }} ({{ message.ts|format_ts("%H:%M") }})
|
|
{% if message.msgtype == "m.text" %}
|
|
{{ message.body_text_plain }}
|
|
{% elif message.msgtype == "m.image" %}
|
|
{{ message.body_text_plain }}
|
|
{% elif message.msgtype == "m.file" %}
|
|
{{ message.body_text_plain }}
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
View {{ room.title }} at {{ notif.link }}
|