{% extends "base.html" %} {% load i18n jmbo_template_tags %} {% block content %}
{% jmbocache 300 'member-detail' object.id %}
{{ object.username }}
{% if object.about_me %}
{{ object.about_me }}
{% endif %}
{% if can_friend %} {% endif %} {% if notifications %} {% endif %} {% if request.user.id == object.id %} {% endif %}
{% trans "Total comments" %} {{ object.number_of_comments }}
{% trans "Recent comments" %} {% for comment in object.last_5_comments %} {% endfor %}
{% endjmbocache %} {% if request.user.is_authenticated %} {% if request.user.id != object.id %}
{% csrf_token %} {{ form.as_div }}
{% endif %} {% endif %}
{% endblock content %}