Files
kennethreitz f9e276c487 Add collection date field, homepage 32-image threshold
Collections: optional date field (defaults to created_at display).
Date picker on create form, shown on dashboard cards.

Homepage: only shows cameras/lenses with 32+ images.
View all links go to full filtered list pages.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-07 22:13:43 -04:00

23 lines
530 B
Python

# Generated by Django 6.0.4 on 2026-04-08 02:12
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("gallery", "0001_initial"),
]
operations = [
migrations.AddField(
model_name="collection",
name="date",
field=models.DateField(
blank=True,
help_text="Optional display date (e.g. date of shoot). Defaults to creation date.",
null=True,
),
),
]