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

Questions with Most Comments/Views/Edits


{% if questions_comnts %} {% for question in questions_comnts %}
 
{{question.calculate_UpVote_DownVote}}
{{question.count_answers}}
{{question.calculate_viewers}}

{{question.title|truncatechars:20}}

{% for tag in question.tags.all %}
{% endfor %}
Asked by - {{question.post_owner}}
{{question.post_owner|calculate_reputation}} {% if question.post_owner|calculateGoldBadges %} {{question.post_owner|calculateGoldBadges}} gold badges {% endif %} {% if question.post_owner|calculatSilvereBadges %} {{question.post_owner|calculatSilvereBadges}} silver badges {% endif %} {% if question.post_owner|calculateBronzeBadges %} {{question.post_owner|calculateBronzeBadges}} bronze badges {% endif %}
Asked {{question.date}}
{% endfor %} {% else %} No Posts {% endif %}
{% if question_vws %} {% for question in question_vws %}
 
{{question.calculate_UpVote_DownVote}}
{{question.count_answers}}
{{question.calculate_viewers}}

{{question.title|truncatechars:20}}

{% for tag in question.tags.all %}
{% endfor %}
Asked by - {{question.post_owner}}
{{question.post_owner|calculate_reputation}} {% if question.post_owner|calculateGoldBadges %} {{question.post_owner|calculateGoldBadges}} gold badges {% endif %} {% if question.post_owner|calculatSilvereBadges %} {{question.post_owner|calculatSilvereBadges}} silver badges {% endif %} {% if question.post_owner|calculateBronzeBadges %} {{question.post_owner|calculateBronzeBadges}} bronze badges {% endif %}
Asked {{question.date}}
{% endfor %} {% else %} No Posts {% endif %}
{% if question_edts %} {% for question in question_edts %}
 
{{question.calculate_UpVote_DownVote}}
{{question.count_answers}}
{{question.calculate_viewers}}

{{question.title|truncatechars:20}}

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