{% extends "coder/base.html" %} {%load viewans%} {%load static%} {% block content %} {%if question.iscorrect%}

Q. {{ question.title }} (Solved)

{%else%}

Q. {{ question.title }}

{%endif%}
{{question.content|safe}}

Your submissions

{%for answer in question|submissions%}
{{answer.result|safe}}
{%endfor%} Submit Answer {% endblock content %}