{% extends "project-base.html" %} {% load q %} {% block title %} {{project.title}} - All Answers {% endblock %} {% block head %} {{block.super}} {% endblock %} {% block body_content %} {% for section in answers %} {% if not forloop.first %}
{% endif %} {% if section.path %}

{% for item in section.path %} {{item}} {% if not forloop.last %}→{% endif %} {% endfor %}

{% endif %}

{% if section.task.get_app_icon_url %} {% else %} {% endif %} {{section.task.title}}

Started: {{section.task.created|date}}

{% with m=section.task.get_last_modification %} {% if m %}

Last change: {{m.answered_by}} answered {{m.taskanswer.question.spec.title}} on {{m.created|date}}.

{% endif %} {% endwith %}
{% if section.answers %} {% for question, answer, value_html in section.answers %} {% endfor %}
Question Answer
{{question.spec.title}}
{{value_html|safe}}
{% if question.spec.type == "module" %} [see below] {% endif %} {% if answer.unsure %}
unsure
{% endif %}
{% for key, label in review_choices %} {{label}} {% endfor %}
{% else %}

There are no answered questions in this module.

{% endif %} {% empty %}

No questions have been answered in this app yet.

{% endfor %} {% endblock %} {% block scripts %} {% endblock %}