{% load i18n %}
{% trans "Account" %}
{% trans "Projects" %}
{% if PROJECT_LIST %}
{% if can_create_projects %} {% trans "New project" %} {% endif %} {% if PROJECT_LIST|length > 10 %} {% blocktrans with PROJECT_LIST|length as count %}View all {{ count }} projects{% endblocktrans %} {% endif %}
{% else %}

{% trans "You are not a part of any projects." %}

{% endif %}
{% trans "Teams" %}
{% if TEAM_LIST %}
{% if can_create_teams %} {% trans "New team" %} {% endif %} {% if TEAM_LIST|length > 10 %} {% blocktrans with TEAM_LIST|length as count %}View all {{ count }} teams{% endblocktrans %} {% endif %}
{% else %}

{% trans "You are not a part of any teams." %}

{% endif %}