{% extends "sentry/layout.html" %} {% load i18n %} {% block title %}{% trans "Project List" %} | {{ block.super }}{% endblock %} {% block page_header %} {% if can_create_projects %} {% trans "Create a new project" %} {% endif %} {{ block.super }} {% endblock %} {% block heading %} {% trans "Project List" %} {% 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 }}
{% 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 %} {% block sidebar %} {% include "sentry/partial/_account_sidebar.html" %} {% endblock %}