{% extends "sentry/projects/base.html" %} {% load i18n %} {% block title %}{% trans "Project List" %} | {{ block.super }}{% endblock %} {% block heading %} {% trans "Project List" %} {% endblock %} {% block page_header %} {% endblock %} {% block main %}
{% if PROJECT_LIST %}

{% trans "The following is a list of projects that you are a member of." %}

{% for project in PROJECT_LIST %} {% endfor %}
{% trans "Name" %} {% trans "Membership" %} {% trans "Owner" %} {% trans "Status" %}
{{ project.name }} ({% trans "Stream" %})
{% if project.member_dsn %} {{ project.member_dsn }} {% endif %}
{{ project.member_type }} {% if project.owner %} {{ project.owner.username }} {% else %} {% trans "no owner" %} {% endif %} {{ project.get_status_display }}
{% else %} {% if can_create_projects %}
You do not have access to any projects. Would you like to create a new project?
{% else %}
{% trans "You do not have access to any projects. Ask an administrator to add you as a member." %}
{% endif %} {% endif %}
{% endblock %}