{% extends "base.html" %} {% block title %}{{ _('My Projects') }}{% endblock %} {% block content %}

{{ _('My Projects') }}

{{ _('Here are all the projects you are a member of.') }}

{{ _('Create New Project') }}
{% if projects %}
{% for project in projects %}
{{ project.name }}
{% if project.description %}

{{ project.description }}

{% endif %} {% if project.created_by_id == current_user.id %} {{ _('Creator') }} {% endif %} {% if project.id == current_user.current_project_id %} {{ _('Current') }} {% endif %}
{{ project.memberships|length }} {{ _('members') }}
{% endfor %}
{% else %}

{{ _('You are not a member of any projects yet.') }}

{{ _('Create your first project or join one via an invitation link!') }}

{% endif %}

{{ _('About Projects') }}

{% endblock %}