Fixed StudentFile __str__

This commit is contained in:
Claude Paroz 2019-08-30 13:22:13 +02:00
parent ef39c85133
commit b458fd747b

View file

@ -394,7 +394,7 @@ class StudentFile(models.Model):
titre = models.CharField("Titre", max_length=200)
def __str__(self):
return self.title
return self.titre
class Corporation(models.Model):