{% extends "base.html" %} {% block title %}Quick Paths - ICDEV™ Dashboard{% endblock %} {% block content %}
{% for path in QUICK_PATHS %}
{{ path.icon }}
{{ path.title }}
{{ path.description }}
👤 {{ path.audience }} ⏱ {{ path.estimated_time }}
    {% for step in path.steps %}
  1. {{ step.name }} — {{ step.desc }}
  2. {% endfor %}
First command: python tools/{{ path.steps[0].tool }}
{% endfor %}

Common Issues & How to Fix Them

{% for key, err in ERROR_RECOVERY.items() %} {% endfor %}
Issue What Happened How to Fix Who Time
{{ key | replace("_", " ") | title }} {{ err.what }} {{ err.fix }} {{ err.who }} {{ err.time }}
{% endblock %}