{% 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 %}
{% for item in section.path %} {{item}} {% if not forloop.last %}→{% endif %} {% endfor %}
{% endif %}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 %}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 %}
|
There are no answered questions in this module.
{% endif %} {% empty %}No questions have been answered in this app yet.
{% endfor %} {% endblock %} {% block scripts %} {% endblock %}