{% extends "base.html" %} {% load i18n %} {% get_current_language as LANGUAGE_CODE %} {% load pgw_nav %} {% block title %}{% trans "Welcome" %}{% endblock %} {% block nav %}{% pgw_navbar "home" "welcome" %}{% endblock %} {% block content %}
{{ user_profile.name }}

{% with user_profile.name as username %} {% blocktrans %} Welcome {{ username }}, enjoy your stay! {% endblocktrans %} {% endwith %}

{% blocktrans count online_count as online_count %} Currently, there is {{ online_count }} user online out of {{ users_count }} registred users. {% plural %} Currently, there are {{ online_count }} users online out of {{ users_count }} registred users. {% endblocktrans %}

{% if DEVELOPER_MODE %}

{% blocktrans %} This is a development server, not intended for production use. Happy hacking! {% endblocktrans %}

{% endif %} {% include "pygowave_server/project_status.html" %} {% endblock %}