{% extends "sentry/layout.html" %} {% load i18n %} {% block title %}{% trans "Dashboard" %} | {{ block.super }}{% endblock %} {% block page_header %} {% endblock %} {% block heading %} {% trans "Account Settings" %} {% endblock %} {% block main %}
{% if PROJECT_LIST %}
{% trans "Loading historical data..." %}

{% trans "Loading ..." %}

{% trans "Loading ..." %}

{% else %} {% if can_create_projects %} {% url sentry-new-project as link %}
{% blocktrans %}You do not have access to any projects. Would you like to create a new project?{% endblocktrans %}
{% else %}
{% trans "You do not have access to any projects. Ask an administrator to add you as a member." %}
{% endif %} {% endif %}
{% endblock %} {% block sidebar %}
{% 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." %}

{% if can_create_projects %}

{% trans "Create a new project" %}

{% endif %} {% endif %} {% endblock %} {% block content_after %} {% endblock %}