# Generated by Django 5.0.2 on 2026-05-26 12:49 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('pages', '0009_alter_homepagesection_section_type'), ] operations = [ migrations.AddField( model_name='homepagesectionitem', name='url', field=models.CharField(blank=True, help_text='Optional link; makes this item clickable.', max_length=300), ), migrations.AlterField( model_name='custompagesection', name='section_type', field=models.CharField(choices=[('hero', 'Hero'), ('intro', 'Intro Card'), ('grid', 'Grid Cards'), ('history', 'History Block'), ('custom', 'Custom Content'), ('features', 'Features Grid'), ('screenshots', 'Screenshots Gallery'), ('products', 'Products Grid'), ('products_catalog', 'Products with Sub-products'), ('problems', 'Problems / Value Proposition'), ('supporters', 'Supporters'), ('about_strip', 'About Strip'), ('faq', 'FAQ Accordion')], default='custom', max_length=30), ), migrations.AlterField( model_name='custompagesectionitem', name='url', field=models.CharField(blank=True, help_text='Optional link; makes this item clickable.', max_length=300), ), migrations.AlterField( model_name='homepagesection', name='section_type', field=models.CharField(choices=[('features', 'Features'), ('screenshots', 'Screenshots Gallery'), ('products', 'Products'), ('products_catalog', 'Products with Sub-products'), ('problems', 'Problems / Value Proposition'), ('about_strip', 'About Strip'), ('supporters', 'Supporters')], max_length=30), ), ]