{% extends "base.html" %} {% load user_tags %} {% load news_tags %} {% block content %} {% if profile.user == user %} {% include "users/nav.html" %} {% endif %}
Public Profile {% if profile.user == user %} edit profile {% else %} {% if user.is_authenticated %} PQ {% endif %} {% endif %} {% if profile.user != user and user.is_authenticated %} {% if friend_status == 0 %} add as friend {% else %} {% if friend_status == 1 %} pending friend request... {% else %} {% if friend_status > 1 %} remove friend {% endif %} {% endif %} {% endif %} {% endif %}

{{ profile.user.username }}

member since {{ profile.user.date_joined|date:"F m, Y" }}

About

{% if profile.bio %}
{{ profile.bio|bbcode2html|safe }}
{% else %}

There is no bio for this user.

{% endif %} {% comment %}
save changes {% endcomment %}
{% include "users/profile/comics.html" %} {% include "users/profile/assisted_comics.html" %} {% include "users/profile/recommended_comics.html" %} {% include "users/profile/friends.html" %} {% include "users/profile/topics.html" %} {% include "users/profile/videos.html" %} {% include "users/profile/trophies.html" %} {% with profile as object %} {% with profile.user as owner %} {% include 'comments/module.html' %} {% endwith %} {% endwith %} {% endblock %}