{% extends 'base.html' %} {% block content %} {% if domains %}
{% for domain in domains %} {% endfor %}
{{ _('Domain') }} {{ _('SSL Status') }} {{ _('Actions') }}
{{ domain.domain_url }} {% if domain.ssl_expiry_date %} {% if domain.ssl_expiry_date == 'None' %}
{{ _('No SSL installed') }}
{% else %}
{{ _('AutoSSL Domain Validated') }}
{{ _('Expires on') }}: {{ domain.ssl_expiry_date }}
| {% endif %} {% else %}
{{ _('SSL check is in progress.. please click here to refresh.') }}
{% endif %}
{% if domain.ssl_expiry_date != 'None' %}
{% else %}
{% endif %}
{% else %}

{{ _('No Domains') }}

{{ _("When you create a domain, the system will attempt to secure that domain with a free Let\'s Encrypt certificate.") }}

{{ _('Add a Domain Name') }}
{% endif %} {% endblock %}