{% extends "base.html" %} {% load i18n future mezzanine_tags drum_tags %} {% block meta_title %}{{ profile_user.username }}{% endblock %} {% block title %}{{ profile_user|get_profile }}{% endblock %} {% block body_id %}account{% endblock %} {% block main %} {% if profile_user == request.user %}
Update profile
{% endif %}
{% with profile_user|get_profile as profile %} {% if profile.bio %}

{{ profile.bio|urlize|linebreaks }}

{% endif %} {% if profile.website %}

Website: {{ profile.website|urlize }}

{% endif %} {% endwith %} comments ({{ profile_user.comment_comments.count }}) | links ({{ profile_user.links.published.count }})
{% endblock %}