class Comment(models.Model):
user = models.ForeignKey(settings.AUTH_USER_MODEL, related_name='st_comments')
I have the above class in models.py .
related_name
has the backward relationship to what? st_comments?
What exactly is st_comments and where is it located and how is it related? Is it a field entry in another class?
If you need more info please check this