{# Dashboard widget: Projects overview #}

{{ _('Projects') }}

{{ _('View All') }}
{% if projects %}
{% for project in projects[:5] %}

{{ project.name }}

{{ project.status|capitalize }}
{% if project.description %}

{{ project.description }}

{% else %}

{{ _('No description') }}

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

{{ _('No projects found') }}

{{ _('Projects will appear here once they are created') }}

{% endif %}