{% load cache chat %}
{% cache 3600 chat_users request.user.pk %} {% for user in chat_users %} {% if user != request.user %}
{% include 'whisper/user.html' with user=user %}
{% endif %} {% endfor %} {% endcache %}