| {{ pn }} |
{% with dat=id_task_overview|get_item:pn %}
{% if dat.status == "Complete" %}
{{ dat.sid }}
{% if dat.sid is None %}{% endif %}
|
{% elif dat.status == "To Do" %}
to do |
{% elif dat.status == "Out" %}
out |
{% else %}
task missing |
{% endif %}
{% endwith %}
{% with all_q_dat=marking_task_overview|get_item:pn %}
{% for qi in question_indices %}
{% with dat=all_q_dat|get_item:qi %}
{% if dat.status == "Complete" %}
{{ dat.score_str }}
|
{% elif dat.status == "To Do" %}
to do
|
{% elif dat.status == "Out" %}
out
|
{% else %}
task missing |
{% endif %}
{% endwith %}
{% endfor %}
{% endwith %}
{% endfor %}