4 {% load username from common_tags %}
 
   8     <li class="{{ item.tag }}{% if not item.user %} anonymous{% endif %}">
 
  10             {% if item.get_email %}
 
  11                 <img src="{% gravatar_url item.get_email 32 %}"
 
  12                     height="32" width="32" alt='Avatar' />
 
  17         <div class="time">{{ item.timestamp }}</div>
 
  18         <h3>{{ item.header }}</h3>
 
  19         <a target="_blank" href='{{ item.url }}'>{{ item.title }}</a>
 
  20         <br/><strong>{% trans "user" %}:</strong>
 
  22             <a href="{% url 'documents_user' item.user.username %}">
 
  23             {{ item.user|username }}</a>
 
  24             <{{ item.user.email|email_link }}>
 
  28                 <{{ item.email|email_link }}>
 
  30             ({% trans "not logged in" %})
 
  32         <br/>{{ item.summary|linebreaksbr }}
 
  35     <li>{% trans "No activity recorded." %}</li>