{% 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 %}