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

{{ t('questions.management','Questions Management') }}

{{ t('questions.add_question','Add Question') }}
{{ t('questions.all_questions','All Questions') }} ({{ questions|length }})
{% if questions %}
{% for question in questions %} {% endfor %}
ID {{ t('questions.question','Question') }} {{ t('entities.features','Feature') }} {{ t('entities.options','Option') }} {{ t('entities.surveys','Survey') }} {{ t('common.created','Created') }} {{ t('common.actions','Actions') }}
{{ question.id }}
{{ question.name }}
{% if question.feature_name %} {{ question.feature_name }} {% else %} {{ t('questions.no_feature','No feature') }} {% endif %} {% if question.option_position %} {{ question.option_position }} {{ question.option_name }} {% else %} - {% endif %} {% if question.survey_name %} {{ question.survey_name }} {% else %} {{ t('features.no_survey','No survey') }} {% endif %} {{ question.created_at.strftime('%b %d, %Y') }}
{% else %}
{{ t('questions.no_questions','No questions found') }}

{{ t('questions.create_first','Get started by creating your first question.') }}

{{ t('questions.add_first','Add First Question') }}
{% endif %}
{% endblock %}