MrKen MrKen (SV!) [Off] [#] (04.07.2018 / 01:00)
Unused!
Demo:
[IMAGE]

Thay đoạn hiển thị nội dung chat bằng code sau:
  1. {% for msg in chat_data.messages %}
  2. <div class="menu chat-item"><img src="{{msg.user_avatar}}" class="chat-avatar" /><div class="chat-message"><a class="{{ 'user-name ' ~ msg.user_css_class }}" href="{{ msg.user_profile_url }}">{{ msg.user_name }}</a>: <span class="chat_message">{{ msg.message }}</span></div><div class="chat-time">{{ msg.message_time|date('H:i') }}</div></div>
  3. {% endfor %}

Thêm vào CSS:
  1. .chat-item:after {display:block; content:''; clear: both;}
  2. .chat-avatar {width: 40px; height: 40px; border-radius: 50%; float: left;}
  3. .chat-message,.chat-time {margin-left: 40px;}
  4. .chat-time {font-size: smaller; color: gray;}


OK xong!