{% extends "base.html" %} {% block title %}My Challenges{% endblock %} {% block content %} {% set me_page = 'challenges' %}

⚡ My Challenges

What slows you down. The AI uses these to prioritize suggestions and surface mitigation strategies in your daily briefing.

🧠 AI Mitigation Suggestions
Loading…
{% set active_keys = challenges | map(attribute='challenge_key') | list %} {% for key in challenge_keys %} {% set label = challenge_labels.get(key, key) %} {% set desc = challenge_descriptions.get(key, '') %} {% set is_active = key in active_keys %}
{% endfor %}
{% if challenges %}
Active Challenges
{% for c in challenges %}
{{ challenge_labels.get(c.challenge_key, c.challenge_key or 'Custom') }} {% if c.custom_description and not c.challenge_key %}{{ c.custom_description }}{% endif %}
{{ c.severity }}
{% endfor %}
{% endif %}
{% include "includes/iqe_query_widget.html" %} {% endblock %}