{% extends 'portal.html' %} {% block content %}

Welcome, {{ user.get_full_name }}.
Actions

{% if show_v2_license %}
HAWC license

The HAWC license has changed. Please review the license and accept:

{% csrf_token %}
{% include "hawc_license.html" %} {% endif %}

Welcome to the HAWC portal. Here you're able to create new assessments, or work on existing assessments. Each assessment is a single human-health risk assessment. You can view assessments by the role you've been assigned.

{% with assessments=user.assessment_pms.all %} {% if assessments %}

Assessments you're managing:

{% include "assessment/_assessment_list_tbl.html" with object_list=assessments %} {% endif %} {% endwith %} {% with assessments=user.assessment_teams.all %} {% if assessments %}

Assessments you're a team-member on:

{% include "assessment/_assessment_list_tbl.html" with object_list=assessments %} {% endif %} {% endwith %} {% with assessments=user.assessment_reviewers.all %} {% if assessments %}

Assessments you can review:

{% include "assessment/_assessment_list_tbl.html" with object_list=assessments %} {% endif %} {% endwith %} {% endblock content %}