{% block content %}
{% if task == 'home' %}
{% include 'home.html' %}
{% endif %}
{% if task == 'instruction' %}
{% include "instruction.html" %}
{% endif %}
{% if task == 'privacy' %}
{% include "privacy.html" %}
{% endif %}
{% if task == 'evidence' %}
{% include "evidence.html" %}
{% endif %}
{% if task == 'evidencesummary' %}
{% include "summary.html" %}
{% endif %}
{% if task == 'app' %}
{% include "app.html" %}
{% endif %}
{% if task == 'form' %}
{% include "form.html" %}
{% endif %}
{% if task == 'formedit' %}
{% include "formedit.html" %}
{% endif %}
{% endblock %}