{% extends "base.html" %} {% block title %}{{ project.title }} - Dify AI Learning{% endblock %} {% block content %}
{{ project.title }}

{{ project.description }}

Difficulty: {{ project.difficulty }}
Duration: {{ project.estimated_time }} minutes
Category: {{ project.category }}
{% if project.prerequisites %}
Prerequisites:
    {% for prereq in project.prerequisites %}
  • {{ prereq }}
  • {% endfor %}
{% endif %}
What You'll Build:
    {% for outcome in project.outcomes %}
  • {{ outcome }}
  • {% endfor %}

{{ project.title }}

Project Overview

{{ project.overview|safe }}
{% for section in project.sections %}

{{ section.title }}

{{ section.content|safe }} {% if section.steps %}
{% for step in section.steps %}

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

{{ step.content|safe }} {% if step.code %}
Configuration:
{{ step.code }}
{% endif %} {% if step.screenshot %}
{{ step.title }}
{% endif %} {% if step.tips %}
Tips:
    {% for tip in step.tips %}
  • {{ tip }}
  • {% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}

Next Steps

Congratulations on completing this project! Here are some suggestions for what to do next:

Try Another Project

Apply your skills to a different type of AI application

Browse Projects
Learn More

Dive deeper into advanced Dify features and techniques

View Tutorials
{% endblock %}