{% extends "base.html" %} {% block content %}
{% if result == "correct" %} Thank you, this is a correct answer, within the accepted tolerance.
{% elif result == "incorrect" %}
Your answer is incorrect. Your Attempt Number Limiting Code (ANLC) has been wasted. Try again.
{% elif result == "presentation-error" %}
There was a presentation error in your data. Your Attempt Number Limiting Code (ANLC) has not been wasted. Please try again.
{% elif result == "code-incorrect" %}
You are trying to use an Attempt Number Limiting Code (ANLC) that does not exist. Please try again.
{% elif result == "code-wasted" %}
You are trying to use an Attempt Number Limiting Code (ANLC) that has already been wasted. Please try again.
{% else %}
You have caused an unexpected error. Such a pity. Maybe you should try again, or probably stop messing with us and give a real answer, will you?
{% endif %}
{% endblock %}