Hi Taenyon,
This list is for development on Django itself.
I see you've also asked the question on the `django-users` mailing list,
which is the right mailing list for your question.
You'll want to follow up any further questions on the `django-users` thread
rather than this one.
All the best,
By using the API correctly:
https://docs.djangoproject.com/en/1.7/topics/db/queries/#backwards-related-objects
Also, this mailing list is not the correct place to ask these questions,
you're looking for
https://docs.djangoproject.com/en/1.7/internals/mailing-lists/#django-users
On Fri, Oct 17, 20
I had a problem in using django 1.7.
Example:
class ModelA(models.Model):
fielda = models.CharField(max_length=10)
class ModelsB(models.Model):
modela = models.ForeignKey(ModelA)
fieldb = models.CharField(max_length=10)
when I query like " modela_instance.modelb_set()', I will get Ke