{% extends "layout.html" %} {% set page_title = "AI Widget Builder - Admin" %} {% block content %}

Create Widgets

Generate custom widgets with AI

Get Started

Modify Existing

Enhance current widgets with AI

AI Suggestions

Get improvement recommendations

Current Widgets

{% for widget_type, widget_info in widget_templates.items() %}
{{ widget_info.name }}

{{ widget_info.description }}

Customizable Fields:
{% for field in widget_info.customizable_fields[:3] %} {{ field }} {% endfor %} {% if widget_info.customizable_fields|length > 3 %} +{{ widget_info.customizable_fields|length - 3 }} more {% endif %}
{% endfor %}
{% endblock %}