{% extends "base.html" %} {% load q %} {% block title %} Your Compliance Projects {% endblock %} {% block breadcrumbs %}
  • Your Compliance Projects
  • {% endblock %} {% block head %} {% endblock %} {% block contextbar %}{% endblock %} {% block body %} {% comment %} {% if request.user.can_see_org_settings and not request.organization.get_organization_project.root_task.is_finished %}

    Complete your organization profile

    Fill out your your organization’s profile.

    {% endif %} {% endcomment %}
    Add system Add other app {% if can_invite_to_org %} Invite colleague {% endif %}

    Assessments

    {% for lifecycle in lifecycles %}

    {{lifecycle.label}}

    {% for stage in lifecycle.stages %}
    {% if stage.label %}

    {{stage.label}}

    {% endif %} {% if stage.subhead %}
    {{stage.subhead}}
    {% endif %} {% for project in stage.projects %}
    {% if project.root_task.get_app_icon_url %} {% endif %}

    {{project.title}} {# how many open tasks for the user? #} {% with project.open_tasks|length as count %} {% if count > 0 %} {{count}} {% endif %} {% endwith %}

    {# what kind of project is this #} {% if project.root_task.module.title != project.title %}

    {{project.root_task.module.title}}

    {% endif %} {% with snippet=project.render_snippet %} {% if snippet %}
    {{project.render_snippet|safe}}
    {% endif %} {% endwith %}
    {% endfor %}
    {% endfor %}
    {% endfor %} {% endblock %} {% block scripts %} {% endblock %}