49 lines
2.2 KiB
Python
49 lines
2.2 KiB
Python
# Generated by Django 5.2.15 on 2026-06-20 23:06
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('pages', '0017_video_description_format'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='homepagesection',
|
|
name='title_highlight',
|
|
field=models.CharField(blank=True, help_text="Second title line shown in accent colour (e.g. 'Outstanding Projects').", max_length=300),
|
|
),
|
|
migrations.AddField(
|
|
model_name='homepagesectionitem',
|
|
name='image_alt',
|
|
field=models.CharField(blank=True, max_length=200),
|
|
),
|
|
migrations.AddField(
|
|
model_name='homepagesectionitem',
|
|
name='project_status',
|
|
field=models.CharField(blank=True, choices=[('', '—'), ('new', 'New'), ('ongoing', 'Ongoing'), ('done', 'Done')], help_text='Project filter category (Projects Showcase section).', max_length=10),
|
|
),
|
|
migrations.AddField(
|
|
model_name='homepagesectionitem',
|
|
name='tags',
|
|
field=models.CharField(blank=True, help_text='Comma-separated tags shown on project cards (e.g. Web Development, Publication).', max_length=300),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='herosection',
|
|
name='title',
|
|
field=models.CharField(blank=True, help_text="Main title line (e.g. 'Advanced Solutions').", 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'), ('projects', 'Projects Showcase'), ('experience', 'Experience / Benefits'), ('about_strip', 'About Strip'), ('supporters', 'Supporters'), ('video', 'Video')], max_length=30),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='homepagesectionitem',
|
|
name='image',
|
|
field=models.ImageField(blank=True, help_text='Card image or icon.', null=True, upload_to='homepage/items/'),
|
|
),
|
|
]
|