{% load markup humanize %}
{% load signalbox_tags %}
{% ad_hoc_scripts participant as ad_hoc %}
{% if ad_hoc %}
{% for m, scripts, askers in ad_hoc %}
{% if scripts %}
{% for i in scripts %}
{% if m.relates_to.user %}
{{m.relates_to.user}}
{% endif %}
{{i.name}}
|
Part of "{{m.study}}".
{% if i.asker %}
This questionnaire will take approximately {{i.asker.approximate_time_to_complete}} minutes
{% endif %}
|
Start
|
{% endfor %}
{% endif %}
{% if askers %}
{% for i in askers %}
{% if m.relates_to.user %}
{{m.relates_to.user}}
{% endif %}
{{i.name}}
|
Part of "{{m.study}}".
{% if i.asker %}
This questionnaire will take approximately {{i.asker.approximate_time_to_complete}} minutes
{% endif %}
|
Start
|
{% endfor %}
{% endif %}
{% endfor %}
{% else %}
No additional questionnaires available
{% endif %}