{% extends "base.html" %} {% load markup %} {% block title %}User profile for: {{user}}{% endblock %} {% block base_content %}
{% with user.userprofile.tasklist_observations|length as l %}

{% 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 %}

Update your details

Email: {{user.email}}
Mobile: {{user.userprofile.formatted_mobile}}
{% if user.userprofile.current_memberships %}

Current studies

    {% for m in user.userprofile.current_memberships %}
  • {{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.userprofile.other_memberships %}

You previously took part in:

    {% for m in user.userprofile.other_memberships %}
  • {{m.study.name}}
  • {% endfor %}
{% endif %}
{% endblock %}