{% extends 'base.html' %} {% block title %}Add New Topic{% endblock %} {% block content %}

Create New Learning Topic

Design a comprehensive lesson with reading content and optional speaking and writing prompts.

{{ form.csrf_token }} {% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %} {% if form.errors %}
Please correct the errors below
{% endif %}
{{ form.title(class="input input-bordered w-full focus:ring-2 focus:ring-primary") }} {% if form.title.errors %}
{{ form.title.errors[0] }}
{% endif %}
{{ form.category(class="select select-bordered w-full focus:ring-2 focus:ring-primary") }} {% if form.category.errors %}
{{ form.category.errors[0] }}
{% endif %}
{{ form.course(class="select select-bordered w-full focus:ring-2 focus:ring-primary") }} {% if form.course.errors %}
{{ form.course.errors[0] }}
{% endif %}

Preview

Sample Topic Title

Category

Reading Content Preview

Your formatted reading content will appear here as you type...
{% endblock %}