2
votes
6answers
251 views
Does order of declaration matter in models.py (Django / Python)?
I have something like this in models.py
class ZipCode(models.Model):
zip = models.CharField(max_length=20)
cities = City.objects.filter(zip=self).distinct()
class City(models.Model …
3
votes
2answers
338 views
Is Django model validation handled just through the forms API?
Is this the only way to create custom model validation? To do it using the forms? What if I want to send data to the database through means other than forms?
…
3
votes
3answers
167 views
How do you make a Django app pluggable?
Say for example I have a Blog app that I want to be able to drop into different projects, but I always want the Blog to be associated with some other model. For example, in one case I may want it t …
