{{ project.name }}

{% if project_type %} {{ project_type.name }} {% else %} Project {% endif %}

{% if project.status == 'active' %} Active {% elif project.status == 'completed' %} Completed {% elif project.status == 'archived' %} Archived {% endif %}
{% if project.description %}

{{ project.description }}

{% endif %}

Locations

{{ locations | length }}

Assigned Units

{{ assigned_units | length }}

Active Sessions

{{ active_sessions | length }}

Completed Sessions

{{ completed_sessions_count }}

Locations

{% if locations %}
{% for location in locations %}

{{ location.name }}

{% if location.address %}

{{ location.address }}

{% endif %} {% if location.coordinates %}

{{ location.coordinates }}

{% endif %}
{% endfor %}
{% else %}

No locations added yet.

{% endif %}

Assigned Units

{% if assigned_units %} {% else %}

No units assigned yet.

{% endif %}

Upcoming Actions

{% if upcoming_actions %}
{% for action in upcoming_actions %}

{{ action.action_type }}

{{ action.scheduled_time.strftime('%Y-%m-%d %H:%M') }}

{% if action.description %}

{{ action.description }}

{% endif %}
{% endfor %}
{% else %}

No scheduled actions.

{% endif %}