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

{{ t('features.management','Features Management') }}

{{ t('features.add_feature','Add Feature') }}
{{ t('features.all_features','All Features') }} ({{ features|length }})
{% if features %}
{% for feature in features %} {% endfor %}
ID {{ t('common.name','Name') }} {{ t('entities.surveys','Survey') }} {{ t('features.position','Position') }} {{ t('common.created','Created') }} {{ t('common.actions','Actions') }}
{{ feature.id }}
{{ feature.name }}
{% if feature.survey_name %} {{ feature.survey_name }} {% else %} {{ t('features.no_survey','No survey') }} {% endif %} {{ feature.position }} {{ feature.created_at.strftime('%b %d, %Y') }}
{% else %}
{{ t('features.no_features','No features found') }}

{{ t('features.create_first','Get started by creating your first feature.') }}

{{ t('features.add_first','Add First Feature') }}
{% endif %}
{% endblock %}