{% if user.first_name %}
{{user.first_name}},
{% else %}
{{user.username}},
{% endif %}
{% if l > 0 %}
you have questionnaires to complete:
{% with user.userprofile.obs_by_study as obs_by_study %}
{% include 'manage/observations_todo_fragment.html' %}
{% endwith %}
{%else%}
you're up to date with everything.
{%endif%}
{% endwith %}
{% with request.user as participant %}
{% include "admin/signalbox/_fragments/_ad_hoc_scripts.html" %}
{% endwith %}