room.html 871 B

12345678910111213141516171819202122232425
  1. <div class="room">
  2. <div class="room_avatar">
  3. {% if room.avatar_url %}
  4. <img src="{{ room.avatar_url|mxc_to_http(48,48) }}" />
  5. {% else %}
  6. {% if room.hash % 3 == 0 %}
  7. <img src="https://vector.im/beta/img/76cfa6.png" />
  8. {% elif room.hash % 3 == 1 %}
  9. <img src="https://vector.im/beta/img/50e2c2.png" />
  10. {% else %}
  11. <img src="https://vector.im/beta/img/f4c371.png" />
  12. {% endif %}
  13. {% endif %}
  14. </div>
  15. <h2>{{ room.title }}</h2>
  16. <div class="room_content">
  17. {% if room.invite %}
  18. <a href="{{ room.link }}">Join the conversation.</a>
  19. {% else %}
  20. {% for notif in room.notifs %}
  21. {% include 'notif.html' with context %}
  22. {% endfor %}
  23. {% endif %}
  24. </div>
  25. </div>