Sunil Mohan Adapa ba4daeb9bb
email_server: Don't let the My Mail page to blank page
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: Fioddor Superconcentrado <fioddor@gmail.com>
2021-10-18 12:49:56 +02:00

35 lines
862 B
HTML

{# SPDX-License-Identifier: AGPL-3.0-or-later #}
{% extends "email_form_base.html" %}
{% load bootstrap %}
{% load i18n %}
{% block content %}
{{ block.super }}
{% if not has_homedir %}
<form action="{{ request.path }}" method="post">
<div class="alert alert-warning" role="alert">
<p>
<strong>{% trans "You do not have a home directory." %}</strong>
<span>
{% trans "Create one to begin receiving emails." %}
</span>
</p>
{% csrf_token %}
<button class="btn btn-primary" type="submit" name="btn_mkhome">
{% trans "Create home directory" %}
</button>
</div>
</form>
{% else %}
<p>{% trans "Your home directory is ready to receive emails." %}</p>
{% endif %}
<p>
<a href="/roundcube/">Roundcube login</a>
</p>
{% endblock %}