{% load humanize %} {% load static %} {% load qa_tags %} {% block content %}
{% if request.user.is_authenticated %}
{% else %}
{% endif %}
{{profileData.user}}
{{profileData.title}}
  • Joined {{profileData.user.date_joined|naturaltime}}
  • {% if not profileData.is_high_moderator %}
  • Last Seen {{ online_user_activity.last_activity|naturaltime }}
  • {% endif %}
{% if request.user == profileData.user %} {% endif %}
Profile Activity {% if request.user == profileData.user %} Settings {% endif %}

{{countallVotes}} Vote{{countallVotes|pluralize}} cast

{% for post in allPosts %}
{% if post.upvote_by_q %} {% elif post.downvote_by_q %} {% elif post.question_to_closing %} {% elif post.question_to_opening %} {% elif post.answer_owner %} {% endif %}
{% if post.upvote_by_q %}{{post.date}}{% elif post.downvote_by_q %}{{post.date}}{% elif post.question_to_closing %}{{post.date}}{% elif post.question_to_opening %}{{post.date_opening}}{% elif post.answer_owner %}{{post.date}}-{% endif %}
{% if post.upvote_by_q %}upvote-{% elif post.downvote_by_q %}downvote-{% elif post.question_to_closing %}vote to close{% elif post.question_to_opening %}vote to reopen{% elif post.answer_owner %}vote on answer-{% endif %} {{post.upvote_question_of.title}} {{post.downvote_question_of.title}} {{post.question_to_closing.title}} {{post.question_to_opening.title}} {{post.body|truncatechars:80}}
{% endfor %}
{% if request.user.is_authenticated %} {% endif %}
 
{% endblock content %}