order thinks on the front page by time of last edit

instead of time of creation
This commit is contained in:
Christian Lawson-Perfect 2025-05-04 08:22:31 +01:00
parent dcdb3d87be
commit 4f92cbf450
5 changed files with 35 additions and 3 deletions

View file

@ -0,0 +1,18 @@
# Generated by Django 5.0.3 on 2025-04-26 07:50
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('thinks', '0004_think_creation_time'),
]
operations = [
migrations.AddField(
model_name='think',
name='last_edited',
field=models.DateTimeField(blank=True, null=True),
),
]