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

Questions with Extreme Votes

{% if questions %} {% for question in questions %}
 
{{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 %}
{% if question.lastEdited_by %}Edited - {{question.q_edited_time}}{% else %}Asked - {{question.date}}{% endif %}
{% endfor %} {% else %} No Posts {% endif %} {% endblock content %}