{% 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('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') }} |
{{ t('temperaments.create_first','Get started by creating your first temperament.') }}
{{ t('temperaments.add_first','Add First Temperament') }}