{% extends "base.html" %} {% load i18n %} {% block title %}{{ block.super }} - {% trans "Welcome" %}{% endblock title %} {% block page_title %}{% trans "Welcome to our customer self service" %}{% endblock page_title %} {% block content %} {% if user.is_authenticated %}

{% url 'customer_dashboard' slug=user.username as dashboard_url %}{% blocktrans with full_name=user.get_full_name %}Hello {{ full_name }},
You can visit your Dashboard to view and modify your hosting options. {% endblocktrans %}

{% else %}

{% trans "This is your entry to our customer self service sytem." %}

{% url 'account_login' as login_url %}{% url 'dashboard' as dashboard_url %}{% blocktrans %}If you are already a customer you can Sign in to view and modify your hosting options.{% endblocktrans %}

{% endif %} {% endblock content %}