{% extends MODERATOR_ACTIVATED|yesno:'website/templates/moderator/base.html,website/templates/base.html' %} {% load widget_tweaks %} {% load static %} {% load count_tags %} {% block title %}User Profile{% endblock %} {% block cssblock %} {% endblock %} {% block heading %} User Profile {% endblock %} {% block content %}

{{profile.user.username}}'s Dashboard



{% if show %} Field required

Fields required to access basic features of forum
{% endif %}

{% for question in questions %}
{{ question.title }}
Asked on:{{ question.date_created }}
{% endfor %}

{% for answer in answers%}
{{ answer.question.title }}

Replied on:{{ answer.date_created }}
{% endfor %}

{% endblock %}