diff options
author | David Baker <dave@matrix.org> | 2016-04-28 10:55:32 +0100 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2016-04-28 10:55:32 +0100 |
commit | 5367708236934a2b191991f1e861ec0d86c02be4 (patch) | |
tree | 5a84aa4657abc24d5ea9da33a2cd7b90bc818af5 /res | |
parent | Linkify plain text messages too (diff) | |
download | synapse-5367708236934a2b191991f1e861ec0d86c02be4.tar.xz |
Add the jinja template for individual notifs
Diffstat (limited to 'res')
-rw-r--r-- | res/templates/notif.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/res/templates/notif.html b/res/templates/notif.html new file mode 100644 index 0000000000..aa6ed1e061 --- /dev/null +++ b/res/templates/notif.html @@ -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> |