{% extends "client/base.html" %} {% block title %}Websites — client portal{% endblock %} {% block heading %}Your websites{% endblock %} {% block content %}

Websites registered to your account. Domains and hosting are in your name — you can take them anywhere.

{% for w in websites %}

{{ w.name }}

{{ w.get_status_display }}
Domain
{{ w.domain }}
Hosting
{{ w.hosting_provider|default:"—" }}
SSL
{% if w.ssl_expiry %}Valid to {{ w.ssl_expiry|date:"j M Y" }}{% else %}—{% endif %}
Last deployment
{{ w.last_deployment|date:"j M Y"|default:"—" }}
Domain renewal
{{ w.domain_expiry|date:"j M Y"|default:"—" }}
Technology
{{ w.backend }}
Maintenance
{{ w.get_maintenance_status_display }}
Visit website Request a change Renew domain or hosting
{% empty %}

No websites yet

Once a project is deployed the site appears here with its domain, hosting and SSL details.

{% endfor %}
{% endblock %}