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

{{ t('temperaments.management','Temperaments Management') }}

{{ t('temperaments.add_temperament','Add Temperament') }}
{{ t('temperaments.all_temperaments','All Temperaments') }} ({{ temperaments|length }})
{% if temperaments %}
{% for temperament in temperaments %} {% endfor %}
{{ t('common.id','ID') }} {{ t('temperaments.color','Color') }} {{ t('common.name','Name') }} {{ t('temperaments.description','Description') }} {{ t('surveys.status','Status') }} {{ t('common.created','Created') }} {{ t('common.actions','Actions') }}
{{ temperament.id }}
{{ temperament.color }}
{{ temperament.name }}
{{ temperament.description[:50] }}{% if temperament.description|length > 50 %}...{% endif %} {{ t('common.active','Active') if temperament.is_active else t('common.inactive','Inactive') }} {{ temperament.created_at.strftime('%b %d, %Y') }}
{% else %}
{{ t('temperaments.no_temperaments','No temperaments found') }}

{{ t('temperaments.create_first','Get started by creating your first temperament.') }}

{{ t('temperaments.add_first','Add First Temperament') }}
{% endif %}
{% endblock %}