{% extends 'profile/base.html' %} {% load humanize %} {% load static %} {% load qa_tags %} {% block content %}

Re-Opened Questions

{% if reopened_questions %} {% for question in reopened_questions %}
 
{{question.question_opened.calculate_UpVote_DownVote}}
{{question.question_opened.count_answers}}
{{question.question_opened.calculate_viewers}}

{{question.question_opened.title|truncatechars:20}}

{% for tag in question.question_opened.tags.all %}
{% endfor %}
Asked by - {{question.question_opened.post_owner}}
{{question.question_opened.post_owner|calculate_reputation}} {% if question.question_opened.post_owner|calculateGoldBadges %} {{question.question_opened.post_owner|calculateGoldBadges}} gold badges {% endif %} {% if question.question_opened.post_owner|calculatSilvereBadges %} {{question.question_opened.post_owner|calculatSilvereBadges}} silver badges {% endif %} {% if question.question_opened.post_owner|calculateBronzeBadges %} {{question.question_opened.post_owner|calculateBronzeBadges}} bronze badges {% endif %}
Asked - {{question.question_opened.date}}
Closed - {{question.date}}
{% endfor %} {% else %} No Posts {% endif %} {% endblock content %}