Dans Django - Héritage de modèle - Vous permet-il de remplacer l'attribut d'un modèle parent?
Je cherche à faire ceci: class Place(models.Model): name = models.CharField(max_length=20) rating = models.DecimalField() class LongNamedRestaurant(Place): # Subclassing `Place`. name = models.CharField(max_length=255) # Notice, I'm overriding `Place.name` to give it a longer length. food_type =...