{% load static %}
Question - Details Information
{% if q %}
{% csrf_token %}
{{ q.text }}
{% if err_msg %}
{{ err_msg }}
{% endif %} {% if q.type.name == "player" %} {% if q.playerchoice_set.count > 0 %} {% for c in q.playerchoice_set.all %}
{{ c.choice.name }}
{% endfor %} {% else %}
Selected question doesn't have choices available for now ...
{% endif %} {% elif q.type.name == "team" %} {% if q.teamchoice_set.count > 0 %} {% for c in q.teamchoice_set.all %}
{{ c.choice.name }}
{% endfor %} {% else %}
Selected question doesn't have choices available for now ...
{% endif %} {% else %} {% if q.coachchoice_set.count > 0 %} {% for c in q.coachchoice_set.all %}
{{ c.choice.name }}
{% endfor %} {% else %}
Selected question doesn't have choices available for now ...
{% endif %} {% endif %}
{% else %}
No information about the question ...
{% endif %}
Current results:
{% if q_choices.count > 0 %} {% for c in q_choices %}
{{ c.choice.name }}:
{{ c.votes }} vote{{ c.votes|pluralize }}
{% endfor %} {% else %}
Selected question doesn't have choices available for now ...
{% endif %}
return home