{% extends "admin_layout.html" %} {% block title %}{{ t('nav.dashboard','Dashboard') }} - {{ app_settings.title if app_settings else t('app.name','Survey Manager') }}{% endblock %} {% block admin_content %}

{{ t('nav.dashboard','Dashboard') }}

{{ stats.users_count }}
{{ t('entities.users','Users') }}
{{ stats.surveys_count }}
{{ t('entities.surveys','Surveys') }}
{{ stats.projects_count }}
{{ t('entities.projects','Projects') }}
{{ stats.peoples_count }}
{{ t('entities.people','People') }}
{{ stats.temperaments_count }}
{{ t('entities.temperaments','Temperaments') }}
{{ stats.questions_count }}
{{ t('entities.questions','Questions') }}
{{ stats.features_count }}
{{ t('entities.features','Features') }}
{{ stats.options_count }}
{{ t('entities.options','Options') }}
{{ t('dashboard.recent_users','Recent Users') }}
{{ t('common.view_all','View All') }}
{% if recent_users %}
{% for user in recent_users %} {% endfor %}
{{ user.name }}
{{ user.name }}
{{ user.email }}
{{ user.role|title }}
{% else %}

{{ t('dashboard.no_users','No users found') }}

{% endif %}
{{ t('dashboard.recent_surveys','Recent Surveys') }}
{{ t('common.view_all','View All') }}
{% if recent_surveys %}
{% for survey in recent_surveys %} {% endfor %}
{{ survey.name }}
{{ t('common.created','Created') }} {{ survey.created_at.strftime('%b %d, %Y') }}
{{ t('common.active','Active') if survey.is_active else t('common.inactive','Inactive') }}
{% else %}

No surveys found

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}