{% extends "base.html" %} {% load markup %} {% block title %}User profile for: {{user}}{% endblock %} {% block base_content %}

{% if user.first_name %} {{user.first_name}}, {% else %} {{user.username}}, {% endif %}

{% if user.get_profile.tasklist_observations|length > 0 %}

You have questionnaires to do:

{% with user.get_profile.obs_by_study as obs_by_study %} {% include 'manage/observations_todo_fragment.html' %} {% endwith %} {%else%}

You're up to date with everything.

{%endif%}
{% with request.user as participant %} {% include "admin/signalbox/_fragments/_ad_hoc_scripts.html" %} {% endwith %}
{% with request.user as participant %} {% include "admin/signalbox/_fragments/_previous_replies.html" %} {% endwith %}

Update your details

Email: {{user.email}}
Mobile: {{user.get_profile.formatted_mobile}}
{% if user.get_profile.current_studies %}

Current studies

    {% for m in user.get_profile.current_studies %}
  • {{m.study.name}} {% if m.study.show_study_condition_to_user %} {% if m.condition.display_name %} ({{m.condition.display_name}}) {% else %} ({{m.condition.tag}}) {% endif %} {%endif%}
  • {% endfor %}
{% endif %} {% if user.get_profile.other_studies %}

You previously took part in:

    {% for m in user.get_profile.other_studies %}
  • {{m.study.name}}
  • {% endfor %}
{% endif %}
{% endblock %}