{% extends "base.html" %} {% block title %}My dashboard — {{ title }}{% endblock %} {% block content %}

Welcome, {{ user.display_name or user.username }}

Manage your domains and account. Server-wide admin tools are not available here.

Sites

{{ site_list|length }} domain(s)

Domains

{% if domains %}{{ domains|join(', ') }}{% else %}None yet{% endif %}

{% if domain_warnings.warnings %}

Notices for your domains

{% for w in domain_warnings.warnings %}
{{ w.title }}

{{ w.detail }}

{% endfor %}
{% elif not domains %}
No domains yet

Ask your administrator to deploy a site for you, or add one under My sites.

{% else %}

No pending notices for your domains.

{% endif %} {% endblock %}