{% load i18n %} {% if questions %} {% for question in questions %}
{% if question.type == 'Technical' %} {% elif question.type == 'Behavioral' %} {% elif question.type == 'Situational' %} {% endif %} {{ question.type }} {% if question.difficulty == 'Easy' %} {% elif question.difficulty == 'Medium' %} {% elif question.difficulty == 'Hard' %} {% endif %} {{ question.difficulty }} {% if question.category %} {{ question.category }} {% endif %}
{{ question.text|linebreaksbr }}
{% trans "Generated" %}: {{ question.created_at|date:"d M Y, H:i" }}
{% endfor %} {% else %}
{% trans "No AI Questions Available" %}

{% trans "Click 'Generate Questions' to create personalized interview questions based on the candidate's profile and job requirements." %}

{% endif %}