Fix typo in extended related name

This commit is contained in:
Alexandre Iooss 2021-10-13 17:06:45 +02:00
parent cc3ba4a492
commit c317310dcf
3 changed files with 5 additions and 5 deletions

View file

@ -40,7 +40,7 @@ class PhotoExtended(models.Model):
# Extend Photologue Photo model.
photo = models.OneToOneField(
Photo,
related_name='extented',
related_name='extended',
on_delete=models.CASCADE,
)