{% extends "base.html" %} {% block title %}{{ tutorial.title }} - Dify AI Learning{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
Tutorial Progress
Step {{ user_progress.current_step + 1 if user_progress else 1 }} of {{ tutorial.steps|length }}

{{ tutorial.title }}

{{ tutorial.difficulty }} {{ tutorial.estimated_time }} minutes {{ tutorial.category }}

{{ tutorial.description }}

{% for step in tutorial.steps %}

{{ loop.index }} {{ step.title }}

{% if step.estimated_time %} {{ step.estimated_time }} min {% endif %}
{{ step.content|safe }} {% if step.code_example %}
Example:
{{ step.code_example }}
{% endif %} {% if step.interactive_demo %}
Interactive Demo:
{{ step.interactive_demo|safe }}
{% endif %} {% if step.tips %}
Tips:
    {% for tip in step.tips %}
  • {{ tip }}
  • {% endfor %}
{% endif %}
{% if loop.index0 > 0 %} {% endif %}
{% if loop.index0 < tutorial.steps|length - 1 %} {% else %} {% endif %}
{% endfor %}
{% endblock %} {% block extra_scripts %} {% endblock %}