{% extends "musician/base.html" %} {% load i18n %} {% block content %}

{% trans "Welcome back" %} {{ profile.username }}

{% if profile.last_login %}

{% blocktrans with last_login=profile.last_login|date:"SHORT_DATE_FORMAT" %}Last time you logged in was: {{ last_login }}{% endblocktrans %}

{% else %}

{% trans "It's the first time you log into the system, welcome on board!" %}

{% endif %}
{{ account.verbose_name }}
{% if account.data and account.data.used %} {{ account.data.used|floatformat }} {{ account.data.unit }} {% endif %}
{% if account.data.progres_bar %}
{% endif %} {% if account.data.alert %}
{{ account.data.alert }}
{% endif %}
{% for resource, usage in resource_usage.items %}
{{ usage.verbose_name }}
{% if usage.data and usage.data.used %} {{ usage.data.used|floatformat }} {{ usage.data.unit }} {% endif %}
{% if usage.data.progres_bar %}
{% endif %} {% if usage.data.alert %}
{{ usage.data.alert }}
{% endif %}
    {% for obj_data in usage.objects %}
  • {{ obj_data }} {{ obj_data.used }} {{ obj_data.resource.unit }}
  • {% endfor %}
{% endfor %}
{% trans "Domains" %}
{{ domains|length }} {% trans "Domains" %}
    {% for domain in domains %}
  • {{ domain }}
  • {% endfor %}
{% endblock %}